]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix assertion
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Mar 2014 15:47:58 +0000 (11:47 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Mar 2014 15:48:25 +0000 (11:48 -0400)
test/orm/test_joins.py

index f37ce7b61ea4158f322005429cf7b2f3b73060ff..3adef01eda09cb1a68971f56e5809453e3f7e1f2 100644 (file)
@@ -402,7 +402,7 @@ class JoinTest(QueryTest, AssertsCompiledSQL):
 
         assert_raises_message(
             sa_exc.InvalidRequestError,
-            "Don't know how to join from x; please use select_from() to "
+            "Don't know how to join from x; please use select_from\(\) to "
             "establish the left entity/selectable of this join",
             sess.query(literal_column('x'), User).join, Address
         )