Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova authored Nov 14, 2024
1 parent e6f6478 commit 6391fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/openvino/test_modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -2004,7 +2004,7 @@ def test_compare_to_transformers(self, model_arch):
inputs = ov_model.preprocess_inputs(**preprocessors, text=prompt, image=self.IMAGE.resize((600, 600)))
transformers_inputs = copy.deepcopy(inputs)
ov_model.to("AUTO")
self.asserEqual(ov_model._device, "AUTO")
self.assertEqual(ov_model._device, "AUTO")
self.assertEqual(ov_model.vision_embeddings._device, "AUTO")
self.assertTrue(ov_model.vision_embeddings.request is None)
self.assertEqual(ov_model.language_model._device, "AUTO")
Expand Down

0 comments on commit 6391fa9

Please sign in to comment.