From: Łukasz Bołdys Date: Tue, 9 Sep 2014 08:16:06 +0000 (+0200) Subject: fixed test X-Git-Tag: rel_0_6_7~6^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb25e49c5258043c6320a51c8a22adc756e12bbf;p=thirdparty%2Fsqlalchemy%2Falembic.git fixed test --- diff --git a/tests/test_mssql.py b/tests/test_mssql.py index a18abfe2..5effa00f 100644 --- a/tests/test_mssql.py +++ b/tests/test_mssql.py @@ -196,7 +196,7 @@ class OpTest(TestCase): def test_rename_table(self): context = op_fixture('mssql') op.rename_table('t1', 't2') - context.assert_containt("EXEC sp_rename '[t1]', [t2]") + context.assert_contains("EXEC sp_rename '[t1]', [t2]") # TODO: when we add schema support #def test_alter_column_rename_mssql_schema(self):