diff options
Diffstat (limited to 'Lib/test/test_grp.py')
| -rwxr-xr-x | Lib/test/test_grp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_grp.py b/Lib/test/test_grp.py index 5acda52..1c1f75f 100755 --- a/Lib/test/test_grp.py +++ b/Lib/test/test_grp.py @@ -1,9 +1,10 @@ """Test script for the grp module.""" -import grp import unittest from test import support +grp = support.import_module('grp') + class GroupDatabaseTestCase(unittest.TestCase): def check_value(self, value): |
