5f448c
diff -up nose-1.3.7/functional_tests/test_load_tests_from_test_case.py.py35 nose-1.3.7/functional_tests/test_load_tests_from_test_case.py
5f448c
--- nose-1.3.7/functional_tests/test_load_tests_from_test_case.py.py35	2012-09-29 02:18:54.000000000 -0600
5f448c
+++ nose-1.3.7/functional_tests/test_load_tests_from_test_case.py	2016-11-15 13:42:27.946707472 -0700
5f448c
@@ -29,6 +29,7 @@ class NoFixturePlug(Plugin):
5f448c
                 pass
5f448c
             def tearDown(self):
5f448c
                 pass
5f448c
+        Derived.__qualname__ = Derived.__name__
5f448c
         # must use nose loader here because the default loader in 2.3
5f448c
         # won't load tests from base classes
5f448c
         l = loader.TestLoader()
5f448c
diff -up nose-1.3.7/nose/util.py.py35 nose-1.3.7/nose/util.py
5f448c
--- nose-1.3.7/nose/util.py.py35	2015-04-04 02:52:52.000000000 -0600
5f448c
+++ nose-1.3.7/nose/util.py	2016-11-15 13:42:27.946707472 -0700
5f448c
@@ -643,6 +643,7 @@ def transplant_class(cls, module):
5f448c
         pass
5f448c
     C.__module__ = module
5f448c
     C.__name__ = cls.__name__
5f448c
+    C.__qualname__ = cls.__name__
5f448c
     return C
5f448c
 
5f448c
 
5f448c
diff -up nose-1.3.7/unit_tests/test_xunit.py.py35 nose-1.3.7/unit_tests/test_xunit.py
5f448c
--- nose-1.3.7/unit_tests/test_xunit.py.py35	2015-04-04 02:52:52.000000000 -0600
5f448c
+++ nose-1.3.7/unit_tests/test_xunit.py	2016-11-15 13:42:27.946707472 -0700
5f448c
@@ -16,6 +16,7 @@ def mktest():
5f448c
     class TC(unittest.TestCase):
5f448c
         def runTest(self):
5f448c
             pass
5f448c
+    TC.__qualname__ = TC.__name__
5f448c
     test = TC()
5f448c
     return test
5f448c