From 2fc7ac2ee5108ed16d0e459768e1408d4d6c91aa Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Wed, 14 Jan 2026 13:14:15 +0200 Subject: [PATCH] Remvoe test to deprecated type --- tests/openvino/native/test_nncf_graph_builder.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/openvino/native/test_nncf_graph_builder.py b/tests/openvino/native/test_nncf_graph_builder.py index cc42f6e39d0..7103d05584d 100644 --- a/tests/openvino/native/test_nncf_graph_builder.py +++ b/tests/openvino/native/test_nncf_graph_builder.py @@ -137,14 +137,3 @@ def _get_default_nncf_graph_edge(from_node, to_node, input_port_id, output_port_ def test_convert_to_nncf_dtype_supported_types(ov_type: ov.Type, expected_nncf_dtype: Dtype): actual_nncf_dtype = GraphConverter.convert_to_nncf_dtype(ov_type) assert actual_nncf_dtype == expected_nncf_dtype - - -@pytest.mark.parametrize( - "ov_type", - [ - ov.Type.undefined, - ], -) -def test_convert_to_nncf_dtype_unsupported_types(ov_type: ov.Type): - with pytest.raises(NotImplementedError): - _ = GraphConverter.convert_to_nncf_dtype(ov_type)