diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-12-09 20:16:04 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-12-09 20:16:04 -0500 |
commit | 57166a6e681068da036d723aadb7bfaad7d2db70 (patch) | |
tree | a2fc4700fb3153360437327340c16b22b6dc55d3 /test | |
parent | 69fc77260c540ab61339255eaf7533fe74315377 (diff) | |
download | mongo-57166a6e681068da036d723aadb7bfaad7d2db70.tar.gz |
The style scripts complain about trailing semi-colons in Python code,
get rid of one in a comment.
Diffstat (limited to 'test')
-rw-r--r-- | test/suite/test_txn02.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/suite/test_txn02.py b/test/suite/test_txn02.py index 79c854d2bf6..32165c380a9 100644 --- a/test/suite/test_txn02.py +++ b/test/suite/test_txn02.py @@ -253,10 +253,9 @@ class test_txn02(wttest.WiredTigerTestCase, suite_subprocess): # Check the state after each commit/rollback. self.check_all(current, committed) - # Check the log state after the entire op completes - # and run recovery. check_log() takes over a second - # to run, so we don't want to run it for all scenarios; - # rather, we run it about 100 times overall. + # Check the log state after the entire op completes and run recovery. + # check_log() takes over a second to run, so we don't want to run it + # for all scenarios, rather, we run it about 100 times overall. if self.scenario_number % (len(test_txn02.scenarios) / 100 + 1) == 0: self.check_log(committed) |