summaryrefslogtreecommitdiff
path: root/unit_tests
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2016-02-02 15:54:28 -0500
committerJohn Szakmeister <john@szakmeister.net>2016-02-02 15:54:28 -0500
commit1dd4921d900828952d60a0a79068450615c63047 (patch)
tree97b921dce4337903ad8a6eb39cb8ab860cd83622 /unit_tests
parent6e11bf997b137fdfdd1b5acb537b5d85dee2013c (diff)
parent916fc672bd88a7e96738bc6bc5ac977666704030 (diff)
downloadnose-1dd4921d900828952d60a0a79068450615c63047.tar.gz
Merge pull request #983 from mitya57/master
Make tests work with Python ≥ 3.5
Diffstat (limited to 'unit_tests')
-rw-r--r--unit_tests/test_xunit.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/unit_tests/test_xunit.py b/unit_tests/test_xunit.py
index 944d285..261436b 100644
--- a/unit_tests/test_xunit.py
+++ b/unit_tests/test_xunit.py
@@ -16,6 +16,7 @@ def mktest():
class TC(unittest.TestCase):
def runTest(self):
pass
+ TC.__qualname__ = TC.__name__
test = TC()
return test