Skip to content

Commit

Permalink
Fix variable name for verdict rule file (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 authored Oct 15, 2024
1 parent 6fdd561 commit 605ab3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etos_test_runner/lib/testrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, iut, etos):
self.etos.config.set("iut", self.iut)
self.plugins = self.etos.config.get("plugins")

verdict_rule_file = os.getenv("VERDICT_RULE_FILE")
verdict_rule_file = os.getenv("VERDICT_RULES_FILE")
if verdict_rule_file is not None:
with open(verdict_rule_file, "r", encoding="utf-8") as inp:
rules = json.load(inp)
Expand Down

0 comments on commit 605ab3d

Please sign in to comment.