diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-02-08 13:05:42 +1100 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-02-08 13:05:42 +1100 |
commit | b23fd1c0c3f1bd0ddef34c5803d517b53911df2d (patch) | |
tree | 1c108238ffd95f4c2eca7b47a9209d6004eb70c5 /test/suite/test_util07.py | |
parent | 174d166569d53a1c0cee43cd54028a3882173863 (diff) | |
download | mongo-b23fd1c0c3f1bd0ddef34c5803d517b53911df2d.tar.gz |
Cleanup test imports, use unittest2 if available so tests pass on Python 2.6.
Diffstat (limited to 'test/suite/test_util07.py')
-rw-r--r-- | test/suite/test_util07.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/suite/test_util07.py b/test/suite/test_util07.py index 5d5467ba1cc..5865977d6f2 100644 --- a/test/suite/test_util07.py +++ b/test/suite/test_util07.py @@ -29,12 +29,9 @@ # Utilities: wt read # -import unittest -from wiredtiger import WiredTigerError -import wttest +import os, struct from suite_subprocess import suite_subprocess -import os -import struct +import wiredtiger, wttest class test_util07(wttest.WiredTigerTestCase, suite_subprocess): tablename = 'test_util07.a' |