summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-09-25 09:48:15 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-09-25 09:48:15 (GMT)
commitbca9acf7ca9106f082601e72b9da7cea6b33b1f0 (patch)
treee9c7532ff8d4852d3e219a55615b6daa4337a058 /Lib/test
parent5027a5070dfb939df37f76c998ed907d972e6406 (diff)
downloadcpython-bca9acf7ca9106f082601e72b9da7cea6b33b1f0.zip
cpython-bca9acf7ca9106f082601e72b9da7cea6b33b1f0.tar.gz
cpython-bca9acf7ca9106f082601e72b9da7cea6b33b1f0.tar.bz2
Issue #18093: fix test_capi test skip due to _testembed move
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_capi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index ba7f2c4..a60d822 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)