diff options
Diffstat (limited to 'test/suite/test_txn02.py')
-rw-r--r-- | test/suite/test_txn02.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/suite/test_txn02.py b/test/suite/test_txn02.py index a9045764504..a3f370aa790 100644 --- a/test/suite/test_txn02.py +++ b/test/suite/test_txn02.py @@ -104,7 +104,7 @@ class test_txn02(wttest.WiredTigerTestCase): # Transactions see their own changes. # Read-uncommitted transactions see all changes. # Snapshot and read-committed transactions should not see changes. - self.check(self.session, None, current); + self.check(self.session, None, current) self.check(self.session2, "isolation=snapshot", committed) self.check(self.session2, "isolation=read-committed", committed) self.check(self.session2, "isolation=read-uncommitted", current) @@ -135,7 +135,7 @@ class test_txn02(wttest.WiredTigerTestCase): c.set_key(k) c.set_value(i + 2) c.insert() - current[k] = i + 2; + current[k] = i + 2 elif op == 'remove': c.set_key(k) c.remove() |