summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_txn16.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_txn16.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_txn16.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_txn16.py b/src/third_party/wiredtiger/test/suite/test_txn16.py
index f7bb01d2f2c..3a0fee0896d 100644
--- a/src/third_party/wiredtiger/test/suite/test_txn16.py
+++ b/src/third_party/wiredtiger/test/suite/test_txn16.py
@@ -92,10 +92,11 @@ class test_txn16(wttest.WiredTigerTestCase, suite_subprocess):
cur_logs = fnmatch.filter(os.listdir(homedir), "*gerLog*")
scur = set(cur_logs)
sorig = set(orig_logs)
- # There can be overlap with the log files that were
- # there originally. Because some pages are rolled back
- # as part of RTS.
- self.assertEqual(scur.isdisjoint(sorig), False)
+ # There should never be overlap with the log files that
+ # were there originally. Mostly this checks that after
+ # opening with logging disabled and then re-enabled, we
+ # don't see log file 1.
+ self.assertEqual(scur.isdisjoint(sorig), True)
if loop > 1:
# We should be creating the same log files each time.
for l in cur_logs: