summaryrefslogtreecommitdiff
path: root/cmdtest
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-09-11 18:57:14 +0100
committerLars Wirzenius <liw@liw.fi>2011-09-11 18:57:14 +0100
commit7c38823009f75e476ff01ab7c59dabb44cbba04a (patch)
tree5ab295ed9c5c56c0e3d14e1b0f365e3ae03c6a1e /cmdtest
parent43523c4ba81cb2836d4c70c6ab4ee374ceebaa4e (diff)
downloadcmdtest-7c38823009f75e476ff01ab7c59dabb44cbba04a.tar.gz
Fix references to cmdtest the module to be to cmdtestlib.
Diffstat (limited to 'cmdtest')
-rwxr-xr-xcmdtest4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdtest b/cmdtest
index f8f925e..b752948 100755
--- a/cmdtest
+++ b/cmdtest
@@ -27,7 +27,7 @@ import tempfile
import ttystatus
import unittest
-import cmdtest
+import cmdtestlib
class TestFailure(Exception):
@@ -84,7 +84,7 @@ class CommandTester(cliapp.Application):
self.ts.add(ttystatus.Index('test', 'tests'))
def load_tests(self, dirnames):
- td = cmdtest.TestDir()
+ td = cmdtestlib.TestDir()
for dirname in dirnames:
td.scan(dirname)
return td