Skip to content

Commit

Permalink
Merge pull request #1767 from sthaha/validator-fix-graphs
Browse files Browse the repository at this point in the history
chore(validator): fix graphs rendered incorrectly
  • Loading branch information
sthaha authored Sep 6, 2024
2 parents 29ff704 + dabaf45 commit 214961f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/tools/validator/src/validator/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,8 @@ def run_validation(
if not result.mape_passed:
click.secho(f"MAPE exceeded threshold. mape: {cmp.mape}, max_mape: {v.max_mape}", fg="red")

result.actual_filepath = dump_query_result(results_dir, v.expected, cmp.expected_series)
result.expected_filepath = dump_query_result(results_dir, v.actual, cmp.actual_series)
result.actual_filepath = dump_query_result(results_dir, v.expected, cmp.actual_series)
result.expected_filepath = dump_query_result(results_dir, v.actual, cmp.expected_series)

# ruff: noqa: BLE001 (Suppressed as we want to catch all exceptions here)
except Exception as e:
Expand Down

0 comments on commit 214961f

Please sign in to comment.