summaryrefslogtreecommitdiff
path: root/python/subunit/tests
diff options
context:
space:
mode:
authorJonathan Lange <jml@mumak.net>2007-01-14 17:37:14 +1100
committerJonathan Lange <jml@mumak.net>2007-01-14 17:37:14 +1100
commit633e5704685580255a56855fa0ef100044d67ffd (patch)
treea74d3f8f71d067045e53a523bd2b3f641fab1f82 /python/subunit/tests
parentcb1a0a2e928473ea68649c09b3691886ac93b57a (diff)
downloadsubunit-git-633e5704685580255a56855fa0ef100044d67ffd.tar.gz
Oops. Missed this.
Diffstat (limited to 'python/subunit/tests')
-rw-r--r--python/subunit/tests/test_test_protocol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/subunit/tests/test_test_protocol.py b/python/subunit/tests/test_test_protocol.py
index 1ee4886..9950f8a 100644
--- a/python/subunit/tests/test_test_protocol.py
+++ b/python/subunit/tests/test_test_protocol.py
@@ -595,8 +595,8 @@ class TestExecTestCase(unittest.TestCase):
def test_count_test_cases(self):
"""TODO run the child process and count responses to determine the count."""
- def test_sibpath(self):
- sibling = subunit.sibpath(__file__, 'foo')
+ def test_join_dir(self):
+ sibling = subunit.join_dir(__file__, 'foo')
expected = '%s/foo' % (os.path.split(__file__)[0],)
self.assertEqual(sibling, expected)