diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-18 11:00:47 -0700 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-03-18 11:00:47 -0700 |
commit | 72c4bdf735d8d81b6ff182d7cc15bbfe56078d12 (patch) | |
tree | c75a9e00d7b4d81aacf896ee9e5313c9016ae52b /test/sql/test_compiler.py | |
parent | de9525a73e5166c1d624aba6580ad2316a0e87e0 (diff) | |
parent | c3e1ef81dbd6a3b62218b73a476407867b6b0871 (diff) | |
download | sqlalchemy-72c4bdf735d8d81b6ff182d7cc15bbfe56078d12.tar.gz |
merge plus fix the test spelling too
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r-- | test/sql/test_compiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index fe52402ec..fa15c7aa2 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -2211,14 +2211,14 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL): assert_raises_message( exc.CompileError, - "Cannot compile Column object until it's 'name' is assigned.", + "Cannot compile Column object until its 'name' is assigned.", str, sel2 ) sel3 = select([my_str]).as_scalar() assert_raises_message( exc.CompileError, - "Cannot compile Column object until it's 'name' is assigned.", + "Cannot compile Column object until its 'name' is assigned.", str, sel3 ) |