From: Mike Bayer Date: Wed, 19 Mar 2014 15:47:58 +0000 (-0400) Subject: fix assertion X-Git-Tag: rel_0_8_6~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5f69d83d6c79a1a93eb69847b769f3d36186d6b0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix assertion --- diff --git a/test/orm/test_joins.py b/test/orm/test_joins.py index f37ce7b61e..3adef01eda 100644 --- a/test/orm/test_joins.py +++ b/test/orm/test_joins.py @@ -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 )