Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/3.11' into 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogsal committed Apr 2, 2024
2 parents 9a40444 + 38bcbb2 commit cd12e6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ def test_prefixes(self):
('base_exec_prefix', sys.base_exec_prefix)):
cmd[2] = 'import sys; print(sys.%s)' % prefix
out, err = check_output(cmd)
self.assertEqual(out.strip(), expected.encode(), prefix)
self.assertEqual(pathlib.Path(out.strip().decode()),
pathlib.Path(expected), prefix)

@requireVenvCreate
def test_sysconfig(self):
Expand Down

0 comments on commit cd12e6c

Please sign in to comment.