summaryrefslogtreecommitdiff
path: root/test/suite/test_txn07.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/test_txn07.py')
-rw-r--r--test/suite/test_txn07.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/suite/test_txn07.py b/test/suite/test_txn07.py
index 74df555ce5c..8e7119186f5 100644
--- a/test/suite/test_txn07.py
+++ b/test/suite/test_txn07.py
@@ -160,10 +160,8 @@ class test_txn07(wttest.WiredTigerTestCase, suite_subprocess):
# Choose large compressible values for the string cases.
value = 'abc' * 1000000
current = {1:value, 2:value, 3:value, 4:value, 5:value}
- c.set_value(value)
for k in current:
- c.set_key(k)
- c.insert()
+ c[k] = value
committed = current.copy()
ops = (self.op1, )