Skip to content

Commit c1b04b8

Browse files
authored
tests: http: fix typo (#4201)
Fixes #4182
1 parent 4c9245a commit c1b04b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils/httpd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def translate_path(self, path):
2020
import posixpath
2121

2222
# NOTE: `directory` was introduced in 3.7
23-
if sys.version_info < (3, 7):
23+
if sys.version_info >= (3, 7):
2424
return super().translate_path(path)
2525

2626
path = path.split("?", 1)[0]

0 commit comments

Comments
 (0)