summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-04-09 13:57:49 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-04-09 13:57:49 -0400
commit27b0832ea89ce99408d4c02f2269d34cb85233da (patch)
tree4a2e37506edb9355f6b979a1ce6cade9be8ccc07 /test
parent72fb740c22a1c59abd2ca62246d2cc3d5071429e (diff)
downloadsqlalchemy-27b0832ea89ce99408d4c02f2269d34cb85233da.tar.gz
refined system bywhich dependencyprocessor per-state actions
are established
Diffstat (limited to 'test')
-rw-r--r--test/orm/test_unitofworkv2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/orm/test_unitofworkv2.py b/test/orm/test_unitofworkv2.py
index e9183297d..728cdfd7b 100644
--- a/test/orm/test_unitofworkv2.py
+++ b/test/orm/test_unitofworkv2.py
@@ -466,7 +466,7 @@ class SingleCycleTest(UOWTest):
n1.children.append(n2)
- self._assert_uow_size(sess, 4)
+ self._assert_uow_size(sess, 3)
sess.flush()
@@ -476,7 +476,7 @@ class SingleCycleTest(UOWTest):
self._assert_uow_size(sess, 2)
n1.children
- self._assert_uow_size(sess, 3)
+ self._assert_uow_size(sess, 2)
class SingleCycleM2MTest(_base.MappedTest, testing.AssertsExecutionResults):