summaryrefslogtreecommitdiff
path: root/testing/test_conftest.py
diff options
context:
space:
mode:
authorAndras Tim <andras.tim@gmail.com>2017-07-17 01:25:06 +0200
committerAndras Tim <andras.tim@gmail.com>2017-07-17 01:28:16 +0200
commit6146ac97d9f79bb9ee5f8a26cbe4298f6fe06987 (patch)
tree4ec2967ea7e64a2ee5bd4f45eb9cb878dedf3aec /testing/test_conftest.py
parent6af2abdb53ed5277d7c43bfec0ec646b2a35a814 (diff)
downloadpytest-6146ac97d9f79bb9ee5f8a26cbe4298f6fe06987.tar.gz
Fixed E101 flake8 errors
indentation contains mixed spaces and tabs
Diffstat (limited to 'testing/test_conftest.py')
-rw-r--r--testing/test_conftest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/test_conftest.py b/testing/test_conftest.py
index b6fd7814c..ed01c5410 100644
--- a/testing/test_conftest.py
+++ b/testing/test_conftest.py
@@ -319,25 +319,25 @@ class TestConftestVisibility(object):
# N.B.: "swc" stands for "subdir with conftest.py"
# "snc" stands for "subdir no [i.e. without] conftest.py"
@pytest.mark.parametrize("chdir,testarg,expect_ntests_passed", [
- # Effective target: package/..
+ # Effective target: package/..
("runner", "..", 3),
("package", "..", 3),
("swc", "../..", 3),
("snc", "../..", 3),
- # Effective target: package
+ # Effective target: package
("runner", "../package", 3),
("package", ".", 3),
("swc", "..", 3),
("snc", "..", 3),
- # Effective target: package/swc
+ # Effective target: package/swc
("runner", "../package/swc", 1),
("package", "./swc", 1),
("swc", ".", 1),
("snc", "../swc", 1),
- # Effective target: package/snc
+ # Effective target: package/snc
("runner", "../package/snc", 1),
("package", "./snc", 1),
("swc", "../snc", 1),