From c442b1c486db5cb0aa589b43f73385d9cc5706e3 Mon Sep 17 00:00:00 2001 From: Windson yang Date: Tue, 23 Apr 2019 02:50:24 +0800 Subject: [PATCH] bpo-36680: Rename duplicate test_source_from_cache_path_like_arg function (GH-12893) --- Lib/test/test_importlib/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index d134e3c3b04..8739eea841d 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -682,7 +682,7 @@ class PEP3147Tests: @unittest.skipIf(sys.implementation.cache_tag is None, 'requires sys.implementation.cache_tag not be None') - def test_source_from_cache_path_like_arg(self): + def test_cache_from_source_path_like_arg(self): path = pathlib.PurePath('foo', 'bar', 'baz', 'qux.py') expect = os.path.join('foo', 'bar', 'baz', '__pycache__', 'qux.{}.pyc'.format(self.tag))