diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-04-15 00:13:48 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-04-15 00:13:48 -0400 |
commit | 1cf4a745d83acc51a562ca1d1289cf524fbee33c (patch) | |
tree | b7d175573b73938c1e01cd20fb291d86a60e69a6 /lib/sqlalchemy/test/assertsql.py | |
parent | 74a417a5996f829f301853eeed363e5389226107 (diff) | |
download | sqlalchemy-1cf4a745d83acc51a562ca1d1289cf524fbee33c.tar.gz |
- beef up the --reversetop test option to embed RandomSet throughout the ORM
- with m2m we have to go back to the previous approach of having both sides of
the DP fire off, tracking each pair of objects. history may not be consistently present
in one side or the other
- this revealed a whole lot of issues with self-referential m2m, which are fixed
Diffstat (limited to 'lib/sqlalchemy/test/assertsql.py')
-rw-r--r-- | lib/sqlalchemy/test/assertsql.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/test/assertsql.py b/lib/sqlalchemy/test/assertsql.py index d67de2355..81ef73a7c 100644 --- a/lib/sqlalchemy/test/assertsql.py +++ b/lib/sqlalchemy/test/assertsql.py @@ -173,7 +173,8 @@ class CompiledSQL(SQLMatchRule): self._result = equivalent if not self._result: self._errmsg = "Testing for compiled statement %r partial params %r, " \ - "received %r with params %r" % (self.statement, all_params, _received_statement, all_received) + "received %r with params %r" % \ + (self.statement, all_params, _received_statement, all_received) class CountStatements(AssertRule): |