mirror of
https://github.com/python/cpython.git
synced 2025-12-09 18:48:05 +00:00
bpo-40275: Use new test.support helper submodules in tests (GH-21743)
This commit is contained in:
parent
52f98424a5
commit
79bb2c93f2
20 changed files with 73 additions and 56 deletions
|
|
@ -1,9 +1,10 @@
|
|||
"""Test script for the grp module."""
|
||||
|
||||
import unittest
|
||||
from test import support
|
||||
from test.support import import_helper
|
||||
|
||||
grp = support.import_module('grp')
|
||||
|
||||
grp = import_helper.import_module('grp')
|
||||
|
||||
class GroupDatabaseTestCase(unittest.TestCase):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue