Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-41207 In distutils.spawn, rewrite FileNotFound #21359

Merged
merged 4 commits into from
Jul 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move assert outside the context so it actually has its effect.
  • Loading branch information
jaraco committed Jul 7, 2020
commit 1f2034681fcac1492bd6c2005f128d24eece05cd
2 changes: 1 addition & 1 deletion Lib/distutils/tests/test_spawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_find_executable(self):
def test_spawn_missing_exe(self):
with self.assertRaises(DistutilsExecError) as ctx:
spawn(['does-not-exist'])
assert 'command does-no-exist failed' in str(ctx)
self.assertIn("command 'does-not-exist' failed", str(ctx.exception))


def test_suite():
Expand Down