bpo-36680: Rename duplicate test_source_from_cache_path_like_arg function (GH-12893)

This commit is contained in:
Windson yang 2019-04-23 02:50:24 +08:00 committed by Steve Dower
parent 3d6f61edb8
commit c442b1c486
1 changed files with 1 additions and 1 deletions

View File

@ -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))