Skip to content

Commit ce8cf49

Browse files
committed
oops
1 parent 6dce81d commit ce8cf49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyperformance/tests/test_compile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
import pathlib
23
import tempfile
34
import textwrap
@@ -63,7 +64,7 @@ def test_compile_adds_tail_call_interp_flag(self):
6364
configure_call = app.run.call_args_list[0]
6465
self.assertEqual(
6566
configure_call.args,
66-
("/tmp/cpython/configure", "--with-tail-call-interp"),
67+
(os.path.join(conf.repo_dir, "configure"), "--with-tail-call-interp"),
6768
)
6869
self.assertEqual(configure_call.kwargs, {"cwd": "/tmp/build"})
6970

0 commit comments

Comments
 (0)