From f5f9c13551ca6c4594e69981e162198ae73f3a1d Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 2 Feb 2015 14:22:13 -0500 Subject: [PATCH] adjust for py3k module renaming --- Lib/test/test_sys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index f86c7c1b89..2f66eb71d2 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -539,7 +539,7 @@ class SysModuleTest(unittest.TestCase): test.support.get_attribute(sys, "getwindowsversion") self.assert_raise_on_new_sys_type(sys.getwindowsversion()) - @test.test_support.cpython_only + @test.support.cpython_only def test_clear_type_cache(self): sys._clear_type_cache() -- 2.50.0