diff options
author | Kumar Aditya <rahuladitya303@gmail.com> | 2021-11-30 01:57:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 12:27:34 -0800 |
commit | 02b5ac6091ada0c2df99c4e1eae37ddccbcd91f0 (patch) | |
tree | 363eb9b4041a85ec77107f60b5a8838a42f3499f | |
parent | 6266e4af873a27c9d352115f2f7a1ad0885fc031 (diff) | |
download | cpython-git-02b5ac6091ada0c2df99c4e1eae37ddccbcd91f0.tar.gz |
bpo-45653: fix test_embed on windows (GH-29814)
-rw-r--r-- | Lib/test/test_embed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index e1af15dd70..94cdd98b2d 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -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') |