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/__init__.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/__init__.py')
| -rw-r--r-- | python/subunit/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py index c3d06ff..84426ac 100644 --- a/python/subunit/__init__.py +++ b/python/subunit/__init__.py @@ -363,7 +363,7 @@ class RemotedTestCase(unittest.TestCase): return self.__description def id(self): - return "%s.%s" % (self._strclass(), self.__description) + return "%s" % (self.__description,) def __str__(self): return "%s (%s)" % (self.__description, self._strclass()) |
