summaryrefslogtreecommitdiff
path: root/functional_tests/test_xunit.py
diff options
context:
space:
mode:
authorAlex Stewart <alex@foogod.com>2010-09-01 00:09:39 -0700
committerAlex Stewart <alex@foogod.com>2010-09-01 00:09:39 -0700
commit98915e63e3eef575f05645c191ea5e82816a126e (patch)
tree9f603266e4ff9203bbee392a359900fdccd14a1f /functional_tests/test_xunit.py
parent3b4d7b94d06f5e7129ec6b3caf41407580e0e1a6 (diff)
downloadnose-98915e63e3eef575f05645c191ea5e82816a126e.tar.gz
More 3.x fixups (Now down to only 5 of 331 tests not passing)
Diffstat (limited to 'functional_tests/test_xunit.py')
-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 2e6129c..00e16b1 100644
--- a/functional_tests/test_xunit.py
+++ b/functional_tests/test_xunit.py
@@ -33,7 +33,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 '<error type="exceptions.Exception" message="日本">' in result
+ assert '<error type="%s.Exception" message="日本">' % (Exception.__module__,) in result
assert '</testcase>' in result
assert '</testsuite>' in result