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