summaryrefslogtreecommitdiff
path: root/tests/end2end/features/test_downloads_bdd.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/features/test_downloads_bdd.py')
-rw-r--r--tests/end2end/features/test_downloads_bdd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/end2end/features/test_downloads_bdd.py b/tests/end2end/features/test_downloads_bdd.py
index 804ed40fe..95707f710 100644
--- a/tests/end2end/features/test_downloads_bdd.py
+++ b/tests/end2end/features/test_downloads_bdd.py
@@ -38,7 +38,7 @@ def download_dir(tmpdir):
downloads.ensure(dir=True)
(downloads / 'subdir').ensure(dir=True)
try:
- os.mkfifo(str(downloads / 'fifo'))
+ os.mkfifo(downloads / 'fifo')
except AttributeError:
pass
unwritable = downloads / 'unwritable'
@@ -72,7 +72,7 @@ def check_ssl():
@bdd.when("the unwritable dir is unwritable")
def check_unwritable(tmpdir):
unwritable = tmpdir / 'downloads' / 'unwritable'
- if os.access(str(unwritable), os.W_OK):
+ if os.access(unwritable, os.W_OK):
# Docker container or similar
pytest.skip("Unwritable dir was writable")
@@ -166,4 +166,4 @@ def delete_file(tmpdir, filename):
def fifo_should_be_fifo(tmpdir):
download_dir = tmpdir / 'downloads'
assert download_dir.exists()
- assert not os.path.isfile(str(download_dir / 'fifo'))
+ assert not os.path.isfile(download_dir / 'fifo')