summaryrefslogtreecommitdiff
path: root/tests/build
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@users.noreply.github.com>2022-04-06 19:11:20 +0200
committerGitHub <noreply@github.com>2022-04-06 19:11:20 +0200
commitce5ca29d27f4c0e538f82823ef822840102bfea2 (patch)
tree257829624843ea4acaba23256a40ed02a82e7b31 /tests/build
parent786e9747d78cea39cb530221dd9b2592dfc4bca4 (diff)
downloadcython-ce5ca29d27f4c0e538f82823ef822840102bfea2.tar.gz
Fix typo in unittests (GH-4715)
Diffstat (limited to 'tests/build')
-rw-r--r--tests/build/cythonize_cython.srctree2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/build/cythonize_cython.srctree b/tests/build/cythonize_cython.srctree
index 1712436e3..d9dfaa7ad 100644
--- a/tests/build/cythonize_cython.srctree
+++ b/tests/build/cythonize_cython.srctree
@@ -27,7 +27,7 @@ for test_case in ["notcython.pyx", "my_module/cython.pyx", "cythontest/helper.py
from Cython.Compiler.Main import main as cython
import sys
-for test_case in ["cython.pyx", "scr2/cython.pyx", "src/cython/helper.pyx"]:
+for test_case in ["cython.pyx", "src2/cython.pyx", "src/cython/helper.pyx"]:
sys.argv=["cython", test_case] #cython.py will extract parameters from sys.argv
try:
cython(command_line=1)