diff --git a/src/etc/combine-tests.py b/src/etc/combine-tests.py index fbe8bd85b66..366ec311a43 100755 --- a/src/etc/combine-tests.py +++ b/src/etc/combine-tests.py @@ -30,9 +30,7 @@ for t in os.listdir(run_pass): "xfail-fast" in s or "xfail-win32" in s): stage2_tests.append(t) - if "main(args: [str])" in s: - take_args[t] = True - if "main(args: ~[str])" in s: + if "main(args: ~[~str])" in s: take_args[t] = True f.close()