From: Benjamin Peterson Date: Thu, 27 Sep 2012 22:10:17 +0000 (-0400) Subject: renmae test method to avoid conflict (#16056) X-Git-Tag: v3.3.1rc1~818^2^2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43f8f4cf18d3d2ffbc34f259d884cc71e064b584;p=python renmae test method to avoid conflict (#16056) --- diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 31ebd9c603..3f5ac98a0e 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -791,7 +791,7 @@ class ClassCreationTests(unittest.TestCase): self.assertEqual(C.y, 1) self.assertEqual(C.z, 2) - def test_new_class_exec_body(self): + def test_new_class_metaclass_keywords(self): #Test that keywords are passed to the metaclass: def meta_func(name, bases, ns, **kw): return name, bases, ns, kw