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