summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_txn06.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_txn06.py')
-rwxr-xr-x[-rw-r--r--]src/third_party/wiredtiger/test/suite/test_txn06.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_txn06.py b/src/third_party/wiredtiger/test/suite/test_txn06.py
index bad62f55292..c0bbe332c79 100644..100755
--- a/src/third_party/wiredtiger/test/suite/test_txn06.py
+++ b/src/third_party/wiredtiger/test/suite/test_txn06.py
@@ -45,7 +45,7 @@ class test_txn06(wttest.WiredTigerTestCase, suite_subprocess):
SimpleDataSet(self, self.source_uri, self.nrows).populate()
# Now scan the table and copy the rows into a new table
- c_src = self.session.create(self.uri, "key_format=S")
+ c_src = self.session.create(self.uri, "key_format=S,value_format=S")
c_src = self.session.open_cursor(self.source_uri)
c = self.session.open_cursor(self.uri)
for k, v in c_src: