From 8938f5efad47364da9e6234660562ae5a05f1c06 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 31 Oct 2025 11:27:53 -0700 Subject: compilers: Remove Environment parameter from Compiler.sanity_check --- unittests/allplatformstests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unittests') diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index d1e5a554d..3f78c72b4 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -2513,7 +2513,7 @@ class AllPlatformTests(BasePlatformTests): try: comp = detect_compiler_for(env, l, MachineChoice.HOST, True, '') with tempfile.TemporaryDirectory() as d: - comp.sanity_check(d, env) + comp.sanity_check(d) langs.append(l) except EnvironmentException: pass -- cgit v1.2.3