From: Mike Bayer Date: Wed, 19 Mar 2014 15:47:58 +0000 (-0400) Subject: fix assertion X-Git-Tag: rel_0_9_4~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89a8e0d187b8967c9b8291bcdc3078335704dbfa;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix assertion --- diff --git a/test/orm/test_joins.py b/test/orm/test_joins.py index e820f3fc4c..40bc01b5d6 100644 --- a/test/orm/test_joins.py +++ b/test/orm/test_joins.py @@ -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 )