Update test to accept flags instead of a bool

This commit is contained in:
James Rouzier
2017-10-25 19:54:40 -04:00
parent 7c466e53f0
commit 2f1f4b19a0
5 changed files with 25 additions and 25 deletions

View File

@@ -30,7 +30,7 @@ bool testcase_jitter::run() {
if (flipcoin()) {
jitter_delay();
txn_begin(true);
txn_begin(MDBX_RDONLY);
fetch_canary();
jitter_delay();
txn_end(flipcoin());
@@ -51,7 +51,7 @@ bool testcase_jitter::run() {
if (flipcoin()) {
jitter_delay();
txn_begin(true);
txn_begin(MDBX_RDONLY);
jitter_delay();
txn_end(flipcoin());
}