Skip to content

Commit

Permalink
Fix mock FE test (openvinotoolkit#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvafin authored Jan 16, 2023
1 parent 921696d commit b56b124
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __str__(self):
fe = fem.load_by_framework(framework=MOCK_PY_FRONTEND_NAME)
assert fe is not None
with pytest.raises(RuntimeError) as e:
fe.load(TestClass())
fe.load(str(TestClass()))
assert "Path: 'test class' does not exist. Please provide valid model's path either as a string, bytes or pathlib.Path" in str(e.value)


Expand Down

0 comments on commit b56b124

Please sign in to comment.