Skip to content

Commit

Permalink
Fix type error.
Browse files Browse the repository at this point in the history
Change-Id: I5db22405c93b66fd268b19f1e081dc24f3246d24
  • Loading branch information
MarkDaoust committed Jul 8, 2024
1 parent a87a6e7 commit ad97b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def test_max_temperature(self):
self.responses = {
"get_model": protos.Model(name=name, max_temperature=max_temperature),
}
model = models.get_model(name)
model = models.get_base_model(name)
self.assertEqual(max_temperature, model.max_temperature)

@parameterized.named_parameters(
Expand Down

0 comments on commit ad97b38

Please sign in to comment.