summaryrefslogtreecommitdiff
path: root/functional_tests
diff options
context:
space:
mode:
authorkumar <kumar.mcmillan@gmail.com>2011-03-19 01:15:38 -0500
committerkumar <kumar.mcmillan@gmail.com>2011-03-19 01:15:38 -0500
commit4f679be6baf051309eb46a15b5b587a1967e1732 (patch)
treefb51e9a6707389fd6c9d4cea5758972721679474 /functional_tests
parent96585f6d7d86fd59ab7e54d7a0a194899a740a3e (diff)
downloadnose-4f679be6baf051309eb46a15b5b587a1967e1732.tar.gz
Xunit plugin now shows test run time in fractions of a second (#317)
Diffstat (limited to 'functional_tests')
-rw-r--r--functional_tests/test_xunit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functional_tests/test_xunit.py b/functional_tests/test_xunit.py
index a3bbaff..5d21a17 100644
--- a/functional_tests/test_xunit.py
+++ b/functional_tests/test_xunit.py
@@ -34,7 +34,7 @@ class TestXUnitPlugin(PluginTester, unittest.TestCase):
assert '<?xml version="1.0" encoding="UTF-8"?>' in result
assert '<testsuite name="nosetests" tests="6" errors="2" failures="1" skip="1">' in result
- assert '<testcase classname="test_xunit_as_suite.TestForXunit" name="test_error" time="0">' in result
+ assert '<testcase classname="test_xunit_as_suite.TestForXunit" name="test_error" time="' in result
# TODO(Kumar) think of better x-platform code here that
# does not confuse 2to3
if sys.version_info[0:2] >= (3,0):