From: Paul Johnston Date: Tue, 14 Aug 2007 18:03:25 +0000 (+0000) Subject: Make versioningtest.test_basic only assert when the dbapi support sane_rowcount X-Git-Tag: rel_0_4beta3~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d93c7c3b8ff945d4e7f73962d3776062a54eb3c0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Make versioningtest.test_basic only assert when the dbapi support sane_rowcount --- diff --git a/test/orm/unitofwork.py b/test/orm/unitofwork.py index e850854f23..0ef64746f4 100644 --- a/test/orm/unitofwork.py +++ b/test/orm/unitofwork.py @@ -92,7 +92,6 @@ class VersioningTest(UnitOfWorkTest): # a concurrent session has modified this, should throw # an exception s.commit() - assert False except exceptions.ConcurrentModificationError, e: #print e success = True