summaryrefslogtreecommitdiff
path: root/python/subunit/tests/test_test_protocol.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/subunit/tests/test_test_protocol.py')
-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)