We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362e001 commit cf16232Copy full SHA for cf16232
tests/test_models.py
@@ -169,14 +169,6 @@ def test_max_temperature(self):
169
model = models.get_base_model(name)
170
self.assertEqual(max_temperature, model.max_temperature)
171
172
- @parameterized.named_parameters(
173
- ["simple", "mystery-bison-001"],
174
- ["model-instance", protos.Model(name="how?-bison-001")],
175
- )
176
- def test_fail_with_unscoped_model_name(self, name):
177
- with self.assertRaises(ValueError):
178
- model = models.get_model(name)
179
-
180
def test_list_models(self):
181
# The low level lib wraps the response in an iterable, so this is a fair test.
182
self.responses = {
0 commit comments