diff options
author | Don Anderson <dda@mongodb.com> | 2017-01-15 22:21:24 -0500 |
---|---|---|
committer | David Hows <howsdav@gmail.com> | 2017-01-16 14:21:24 +1100 |
commit | 67f96585500a67236e6df2d633acf64dfe16fe5f (patch) | |
tree | 57cd18e4b4beb92e7492f671c18c885ae283663c /test/suite/test_txn08.py | |
parent | 36c9a6513bee481a7ef27f0696a88f9b1921c356 (diff) | |
download | mongo-67f96585500a67236e6df2d633acf64dfe16fe5f.tar.gz |
WT-3121 In the test suite, create a standard way to load extensions (#3241)
* In the test suite, create a standard way to load extensions.
Most examples of overriding setUpConnectionOpen() can now be handled
by a combination of conn_config (as variable or method) and conn_extensions
(as variable or method).
* conn_config when defined as a method, now only takes the self argument,
clean up the callers.
* Refactored several more tests to use conn_config() in favor of overriding
setUpConnectionOpen().
Diffstat (limited to 'test/suite/test_txn08.py')
-rw-r--r-- | test/suite/test_txn08.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite/test_txn08.py b/test/suite/test_txn08.py index f0cdf08df07..04faed9d45a 100644 --- a/test/suite/test_txn08.py +++ b/test/suite/test_txn08.py @@ -41,7 +41,7 @@ class test_txn08(wttest.WiredTigerTestCase, suite_subprocess): uri = 'table:' + tablename # Turn on logging for this test. - def conn_config(self, dir): + def conn_config(self): return 'log=(archive=false,enabled,file_max=%s),' % self.logmax + \ 'transaction_sync="(method=dsync,enabled)"' |