aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorVajrasky Kok <sky.kok@speaklikeaking.com>2014-02-05 16:51:34 +0800
committerVajrasky Kok <sky.kok@speaklikeaking.com>2014-02-05 16:51:34 +0800
commit38777949f0796d5bb64e3e7470057b376948873d (patch)
tree60587c9d93e25db792e621fd53de673dd452b3ce /activerecord/test/cases
parentf92142dce19906cd62382f7938cd748dd48b7d65 (diff)
downloadrails-38777949f0796d5bb64e3e7470057b376948873d.tar.gz
rails-38777949f0796d5bb64e3e7470057b376948873d.tar.bz2
rails-38777949f0796d5bb64e3e7470057b376948873d.zip
Fixed typo in column_definition_test.rb.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/column_definition_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/column_definition_test.rb b/activerecord/test/cases/column_definition_test.rb
index dbb2f223cd..c7b64f29c3 100644
--- a/activerecord/test/cases/column_definition_test.rb
+++ b/activerecord/test/cases/column_definition_test.rb
@@ -82,7 +82,7 @@ module ActiveRecord
assert_equal "", not_null_text_column.default
end
- def test_has_default_should_return_false_for_blog_and_test_data_types
+ def test_has_default_should_return_false_for_blob_and_text_data_types
blob_column = MysqlAdapter::Column.new("title", nil, "blob")
assert !blob_column.has_default?
@@ -116,7 +116,7 @@ module ActiveRecord
assert_equal "", not_null_text_column.default
end
- def test_has_default_should_return_false_for_blog_and_test_data_types
+ def test_has_default_should_return_false_for_blob_and_text_data_types
blob_column = Mysql2Adapter::Column.new("title", nil, "blob")
assert !blob_column.has_default?