From: Nick Coghlan Date: Thu, 25 Sep 2014 09:48:15 +0000 (+1000) Subject: Issue #18093: fix test_capi test skip due to _testembed move X-Git-Tag: v3.5.0a1~854 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bca9acf7ca9106f082601e72b9da7cea6b33b1f0;p=python Issue #18093: fix test_capi test skip due to _testembed move --- diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index ba7f2c4c6d..a60d822bb4 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -285,7 +285,7 @@ class EmbeddingTests(unittest.TestCase): exename += ext exepath = os.path.dirname(sys.executable) else: - exepath = os.path.join(basepath, "Modules") + exepath = os.path.join(basepath, "Programs") self.test_exe = exe = os.path.join(exepath, exename) if not os.path.exists(exe): self.skipTest("%r doesn't exist" % exe)