Skip to content

Commit

Permalink
Use capitals for constants
Browse files Browse the repository at this point in the history
  • Loading branch information
cameel committed Jul 20, 2023
1 parent 14965f9 commit 1605683
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/externalTests/runners/foundry.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 1605683

Please sign in to comment.