Skip to content

Commit d113abc

Browse files
committed
python3 -> python
1 parent 6f5e455 commit d113abc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_expander.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def compile_test(self, source: Path, env=None):
2020
expander_path = Path('expander.py').resolve()
2121
with TemporaryDirectory() as new_dir:
2222
tmp = Path(new_dir)
23-
proc = run(['python3', str(expander_path), str(
23+
proc = run(['python', str(expander_path), str(
2424
source.resolve()), '--lib', str(lib_dir)], cwd=str(tmp), env=env)
2525
self.assertEqual(proc.returncode, 0)
2626
proc = run(['g++', 'combined.cpp', '-std=c++14'], cwd=str(tmp))

0 commit comments

Comments
 (0)