summaryrefslogtreecommitdiff
path: root/testing/test_findpaths.py
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-10-03 08:08:14 -0700
committerAnthony Sottile <asottile@umich.edu>2020-10-03 12:16:52 -0700
commitfb1d550aac0bb092d0156b9ba46fe4082c907a10 (patch)
tree901d4dd874ef20d441bd5e3e3ab7377a989553cc /testing/test_findpaths.py
parent022ac9b9e898ec32bd8f363003c745c1ebe8ff81 (diff)
downloadpytest-fb1d550aac0bb092d0156b9ba46fe4082c907a10.tar.gz
py36+: remove rexport of Path and PurePath
Diffstat (limited to 'testing/test_findpaths.py')
-rw-r--r--testing/test_findpaths.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_findpaths.py b/testing/test_findpaths.py
index 974dcf8f3..af6aeb3a5 100644
--- a/testing/test_findpaths.py
+++ b/testing/test_findpaths.py
@@ -1,10 +1,10 @@
+from pathlib import Path
from textwrap import dedent
import pytest
from _pytest.config.findpaths import get_common_ancestor
from _pytest.config.findpaths import get_dirs_from_args
from _pytest.config.findpaths import load_config_dict_from_file
-from _pytest.pathlib import Path
class TestLoadConfigDictFromFile: