summaryrefslogtreecommitdiff
path: root/unit_tests/test_utils.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-04-21 04:26:05 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-04-21 04:26:05 +0000
commitfd7f96c07097e1544845d7fe6706ac13e7490bd2 (patch)
tree553cf38b49728a734d1f27a589b059e26657b7dc /unit_tests/test_utils.py
parentde9924c8790aa4dcc4bf9cdeac744a1d6029709e (diff)
downloadnose-fd7f96c07097e1544845d7fe6706ac13e7490bd2.tar.gz
Work on integrating doctest and testid plugins; doctest still needs some work to provide correct information to rest of system when individual tests are loaded.
Diffstat (limited to 'unit_tests/test_utils.py')
-rw-r--r--unit_tests/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unit_tests/test_utils.py b/unit_tests/test_utils.py
index 09ff573..ad01e25 100644
--- a/unit_tests/test_utils.py
+++ b/unit_tests/test_utils.py
@@ -82,7 +82,7 @@ class TestUtils(unittest.TestCase):
'Foo.bar')
assert test_address(f) == (me, __name__, 'Foo')
assert test_address(f.bar) == (me, __name__, 'Foo.bar')
- assert test_address(nose) == (absfile(nose.__file__), 'nose')
+ assert test_address(nose) == (absfile(nose.__file__), 'nose', None)
# test passing the actual test callable, as the
# missed test plugin must do