diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-12-12 02:53:44 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-12-12 02:53:44 +0000 |
| commit | a66ef01e052d8f64b4b9bf90745a8ce84ff86109 (patch) | |
| tree | 44338d79e3ca307b177208b9fda0d1c9bf475c96 /test/orm/test_unitofwork.py | |
| parent | 8e9e473dcb76b57a7f0eaa476481cb66a258ea69 (diff) | |
| parent | af0b13b6d919c8c9ddf3a803eef21cd1a00a36ce (diff) | |
| download | sqlalchemy-a66ef01e052d8f64b4b9bf90745a8ce84ff86109.tar.gz | |
Merge "Send deterministic ordering into unit of work topological"
Diffstat (limited to 'test/orm/test_unitofwork.py')
| -rw-r--r-- | test/orm/test_unitofwork.py | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/test/orm/test_unitofwork.py b/test/orm/test_unitofwork.py index eb5530ef4..7583b9d22 100644 --- a/test/orm/test_unitofwork.py +++ b/test/orm/test_unitofwork.py @@ -2531,16 +2531,14 @@ class ManyToManyTest(_fixtures.FixtureTest): self.assert_sql_execution( testing.db, session.flush, - AllOf( - CompiledSQL( - "UPDATE items SET description=:description " - "WHERE items.id = :items_id", - {"description": "item4updated", "items_id": objects[4].id}, - ), - CompiledSQL( - "INSERT INTO keywords (name) " "VALUES (:name)", - {"name": "yellow"}, - ), + CompiledSQL( + "UPDATE items SET description=:description " + "WHERE items.id = :items_id", + {"description": "item4updated", "items_id": objects[4].id}, + ), + CompiledSQL( + "INSERT INTO keywords (name) " "VALUES (:name)", + {"name": "yellow"}, ), CompiledSQL( "INSERT INTO item_keywords (item_id, keyword_id) " |
