summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_subprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index c2a808c004..c781904ed9 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -558,7 +558,7 @@ class ProcessTestCase(BaseTestCase):
# Windows raises IOError
except (IOError, OSError) as err:
# ignore errors that indicate the command was not found
- if err.errno not in (errno.ENOENT, errno.EACCES):
+ if err.errno not in (errno.ENOENT, errno.EACCES):
raise
def test_issue8780(self):