Kaydet (Commit) bd54f0eb authored tarafından Victor Stinner's avatar Victor Stinner

Issue #15478: Fix test_os on FreeBSD

Calling OS functions can fail with errors other than FileNotFoundError: a
FreeBSD buildbot fails for example with a PermissionError.
üst f69055ef
......@@ -2112,7 +2112,7 @@ class OSErrorTests(unittest.TestCase):
for name in self.filenames:
try:
func(name, *func_args)
except FileNotFoundError as err:
except OSError as err:
self.assertIs(err.filename, name)
else:
self.fail("No exception thrown by {}".format(func))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment