aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-01-10 20:51:45 +0100
committerJosé Valim <jose.valim@gmail.com>2012-01-10 20:51:45 +0100
commitae14b71b708d75ba168d849552a8424e84d97154 (patch)
tree28e233195199498b62220e506c7f3a6e1f331659 /railties/test
parentbda0ae76a82db4e678b29fef17862c61365114d1 (diff)
downloadrails-ae14b71b708d75ba168d849552a8424e84d97154.tar.gz
rails-ae14b71b708d75ba168d849552a8424e84d97154.tar.bz2
rails-ae14b71b708d75ba168d849552a8424e84d97154.zip
Remove duplicated test line which was causing Ci failures on 1.8.7.
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/generators/migration_generator_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/test/generators/migration_generator_test.rb b/railties/test/generators/migration_generator_test.rb
index 8f352d1ea6..cdac014965 100644
--- a/railties/test/generators/migration_generator_test.rb
+++ b/railties/test/generators/migration_generator_test.rb
@@ -111,7 +111,6 @@ class MigrationGeneratorTest < Rails::Generators::TestCase
assert_method :change, content do |up|
assert_match(/add_column :books, :title, :string, :limit => 40/, up)
assert_match(/add_column :books, :content, :string, :limit => 255/, up)
- assert_match(/add_column :books, :price, :decimal, :precision => 5, :scale => 2/, up)
assert_match(/add_column :books, :price, :decimal,/, up)
assert_match(/, :precision => 5/, up)
assert_match(/, :scale => 2/, up)