From 16056837819a67e21646d1ce5e90b9691ec58fe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 20 Jul 2023 16:43:25 +0200 Subject: [PATCH] Use capitals for constants --- scripts/externalTests/runners/foundry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/externalTests/runners/foundry.py b/scripts/externalTests/runners/foundry.py index 8cae0c76f4ec..fba32fdab286 100644 --- a/scripts/externalTests/runners/foundry.py +++ b/scripts/externalTests/runners/foundry.py @@ -39,7 +39,7 @@ def run_forge_command(command: str, env: Optional[dict] = None): class FoundryRunner(TestRunner): """Configure and run Foundry-based projects""" - foundry_config_file = "foundry.toml" + FOUNDRY_CONFIG_FILE = "foundry.toml" def setup_environment(self): super().setup_environment() @@ -84,7 +84,7 @@ def configure(self, presets: List[SettingsPreset]): })) with open( - file=self.test_dir / self.foundry_config_file, + file=self.test_dir / self.FOUNDRY_CONFIG_FILE, mode="a", encoding="utf-8", ) as f: