diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-01-28 18:02:39 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-01-28 18:45:04 +1100 |
commit | 2fdff7f596268b53084f3fc15102c9e000966f02 (patch) | |
tree | c8e218a29c217ba61dc1c0f148d0d59e3fc9b104 /source4/lib/ldb | |
parent | 882feb39a28c1a130a38c5406bdebd3eaff0d06c (diff) | |
download | samba-2fdff7f596268b53084f3fc15102c9e000966f02.tar.gz samba-2fdff7f596268b53084f3fc15102c9e000966f02.tar.bz2 samba-2fdff7f596268b53084f3fc15102c9e000966f02.zip |
s4-ldbtest: fixed python import
Diffstat (limited to 'source4/lib/ldb')
-rwxr-xr-x | source4/lib/ldb/tests/python/deletetest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/tests/python/deletetest.py b/source4/lib/ldb/tests/python/deletetest.py index fcd27fcd52..3fe28a389d 100755 --- a/source4/lib/ldb/tests/python/deletetest.py +++ b/source4/lib/ldb/tests/python/deletetest.py @@ -16,7 +16,7 @@ from ldb import SCOPE_BASE, LdbError from ldb import ERR_NO_SUCH_OBJECT from samba import Ldb -from subunit import SubunitTestRunner +from subunit.run import SubunitTestRunner import unittest parser = optparse.OptionParser("deletetest.py [options] <host|file>") @@ -197,4 +197,4 @@ rc = 0 if not runner.run(unittest.makeSuite(BasicDeleteTests)).wasSuccessful(): rc = 1 -sys.exit(rc)
\ No newline at end of file +sys.exit(rc) |