Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfowers committed Jan 10, 2024
1 parent 01fe625 commit ce7ae52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1004,10 +1004,10 @@ def test_026_cli_report(self):
for result in result_dict.values():
# All of the models should have exported to ONNX
assert "export_pytorch" in result["selected_sequence_of_stages"]
assert result["stage_status:export_pytorch"] == "SUCCESSFUL", [
assert result["stage_status:export_pytorch"] == "SUCCESSFUL", result[
"stage_status:export_pytorch"
]
assert result["stage_duration:export_pytorch"] > 0, [
assert result["stage_duration:export_pytorch"] > 0, result[
"stage_duration:export_pytorch"
]

Expand Down

0 comments on commit ce7ae52

Please sign in to comment.