Remove duplicated test line which was causing Ci failures on 1.8.7.

This commit is contained in:
José Valim
2012-01-10 20:51:45 +01:00
parent bda0ae76a8
commit ae14b71b70

View File

@@ -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)