mirror of https://github.com/python/cpython
bpo-45653: fix test_embed on windows (GH-29814)
This commit is contained in:
parent
6266e4af87
commit
02b5ac6091
|
@ -65,7 +65,7 @@ class EmbeddingTestsMixin:
|
|||
ext = ("_d" if debug_build(sys.executable) else "") + ".exe"
|
||||
exename += ext
|
||||
exepath = builddir
|
||||
expecteddir = support.REPO_ROOT
|
||||
expecteddir = os.path.join(support.REPO_ROOT, builddir)
|
||||
else:
|
||||
exepath = os.path.join(builddir, 'Programs')
|
||||
expecteddir = os.path.join(support.REPO_ROOT, 'Programs')
|
||||
|
|
Loading…
Reference in New Issue