summaryrefslogtreecommitdiff
path: root/test/orm/attributes.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/orm/attributes.py')
-rw-r--r--test/orm/attributes.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/orm/attributes.py b/test/orm/attributes.py
index 26828ecac..327a3efd3 100644
--- a/test/orm/attributes.py
+++ b/test/orm/attributes.py
@@ -747,9 +747,7 @@ class HistoryTest(_base.ORMTest):
# no lazyload occurs so this allows overwrite operation to proceed
f = Foo()
eq_(attributes.get_history(attributes.instance_state(f), 'someattr'), ([], [], []))
- print f._foostate.committed_state
f.someattr = None
- print f._foostate.committed_state, f._foostate.dict
eq_(attributes.get_history(attributes.instance_state(f), 'someattr'), ([None], [], []))
f = Foo()