]> 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:47:58 +0000 (11:47 -0400)
test/orm/test_joins.py

index e820f3fc4c1f789f2430c17f346beeb29b71fd37..40bc01b5d6f4b673324cdd86efed9e21bddc18d4 100644 (file)
@@ -404,7 +404,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
         )