diff options
| author | Robert Collins <robertc@robertcollins.net> | 2009-02-23 21:54:28 +1100 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2009-02-23 21:54:28 +1100 |
| commit | 14026b1a23447dda1ada9bb490cdfa118e06fb8d (patch) | |
| tree | 8e077e8b90abeca68d1f94aad9e5265d97eff4bd /python/subunit/tests/test_test_protocol.py | |
| parent | 5d151630e72c33c772abba17e3c20f4d30d55a02 (diff) | |
| download | subunit-git-14026b1a23447dda1ada9bb490cdfa118e06fb8d.tar.gz | |
Remove the unnecessary and annoying subunit.RemotedTestCase prefix from the test id of RemotedTestCase's.
Diffstat (limited to 'python/subunit/tests/test_test_protocol.py')
| -rw-r--r-- | python/subunit/tests/test_test_protocol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/tests/test_test_protocol.py b/python/subunit/tests/test_test_protocol.py index 1f9e3a9..73f0821 100644 --- a/python/subunit/tests/test_test_protocol.py +++ b/python/subunit/tests/test_test_protocol.py @@ -772,7 +772,7 @@ class TestRemotedTestCase(unittest.TestCase): self.assertRaises(NotImplementedError, test.tearDown) self.assertEqual("A test description", test.shortDescription()) - self.assertEqual("subunit.RemotedTestCase.A test description", + self.assertEqual("A test description", test.id()) self.assertEqual("A test description (subunit.RemotedTestCase)", "%s" % test) self.assertEqual("<subunit.RemotedTestCase description=" |
