Skip to content

Commit

Permalink
Fix benchmark experiment tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ysiraichi committed Oct 1, 2024
1 parent 4f25209 commit 87db304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/benchmarks/test_benchmark_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_to_dict(self):
be = BenchmarkExperiment("cpu", "PJRT", "some xla_flags", "openxla", None,
False, "train", "123", False)
actual = be.to_dict()
self.assertEqual(9, len(actual))
self.assertEqual(10, len(actual))
self.assertEqual("cpu", actual["accelerator"])
self.assertTrue("accelerator_model" in actual)
self.assertEqual("PJRT", actual["xla"])
Expand Down

0 comments on commit 87db304

Please sign in to comment.