Skip to content

Commit 27efe76

Browse files
authored
Replace continue with return in inner test method.
1 parent 3a30031 commit 27efe76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def do_test(test, obj, abilities):
532532
if sys.platform.startswith("win") and test in (
533533
pipe_reader, pipe_writer):
534534
# Pipes seem to appear as seekable on Windows
535-
continue
535+
return
536536
seekable = "s" in abilities
537537
self.assertEqual(obj.seekable(), seekable)
538538

0 commit comments

Comments
 (0)