Skip to content

Commit eebb121

Browse files
committed
Removed dependence of TestSdist on test_config.
1 parent 05668ed commit eebb121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

distutils/tests/test_sdist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
from distutils.core import Distribution
1111
from distutils.errors import DistutilsOptionError
1212
from distutils.filelist import FileList
13-
from distutils.tests.test_config import BasePyPIRCCommandTestCase
1413
from os.path import join
1514
from textwrap import dedent
1615

@@ -19,6 +18,7 @@
1918
import pytest
2019
from more_itertools import ilen
2120

21+
from . import support
2222
from .unix_compat import grp, pwd, require_uid_0, require_unix_id
2323

2424
SETUP_PY = """
@@ -66,7 +66,7 @@ def clean_lines(filepath):
6666
yield from filter(None, map(str.strip, f))
6767

6868

69-
class TestSDist(BasePyPIRCCommandTestCase):
69+
class TestSDist(support.TempdirManager):
7070
def get_cmd(self, metadata=None):
7171
"""Returns a cmd"""
7272
if metadata is None:

0 commit comments

Comments
 (0)