Fix test failures caused by #23958

I'm unsure how this passed CI in the pull request.
This commit is contained in:
Sean Griffin 2016-03-11 10:50:52 -07:00
parent 3bfda09fa0
commit 0ff6eb3489
1 changed files with 1 additions and 1 deletions

View File

@ -81,6 +81,6 @@ class PostgresqlBigSerialTest < ActiveRecord::PostgreSQLTestCase
def test_schema_dump_with_not_bigserial
output = dump_table_schema "postgresql_big_serials"
assert_match %r{t\.integer\s+"serials_id",\s+limit: 8,\s+default: -> \{ "nextval\('postgresql_big_serials_id_seq'::regclass\)" \}$}, output
assert_match %r{t\.bigint\s+"serials_id",\s+default: -> \{ "nextval\('postgresql_big_serials_id_seq'::regclass\)" \}$}, output
end
end