summaryrefslogtreecommitdiff
path: root/test/suite
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite')
-rw-r--r--test/suite/test_cursor07.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/suite/test_cursor07.py b/test/suite/test_cursor07.py
index 3ec93aa8a44..1fadf58c81f 100644
--- a/test/suite/test_cursor07.py
+++ b/test/suite/test_cursor07.py
@@ -40,7 +40,9 @@ class test_cursor07(wttest.WiredTigerTestCase, suite_subprocess):
logmax = "100K"
tablename = 'test_cursor07'
uri = 'table:' + tablename
- nkeys = 5
+ # A large number of keys will force a log file change which will
+ # test that scenario for log cursors.
+ nkeys = 7000
scenarios = check_scenarios([
('regular', dict(reopen=False)),