bpo-46425: fix direct invocation of test_importlib (GH-30682)

This commit is contained in:
Nikita Sobolev 2022-01-22 19:05:05 +03:00 committed by GitHub
parent 55f4ec460e
commit 57316c52ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 74 additions and 61 deletions

View file

@ -2,8 +2,8 @@ import io
import unittest
from importlib import resources
from . import data01
from .resources import util
from test.test_importlib import data01
from test.test_importlib.resources import util
class CommonTests(util.CommonTests, unittest.TestCase):