diff --git a/tests/layer_tests/tensorflow_tests/test_tf_Equal.py b/tests/layer_tests/tensorflow_tests/test_tf_Equal.py index b785e4ce440d95..502d0cfc33ba06 100644 --- a/tests/layer_tests/tensorflow_tests/test_tf_Equal.py +++ b/tests/layer_tests/tensorflow_tests/test_tf_Equal.py @@ -241,8 +241,8 @@ def create_equal_net(self, x_shape, y_shape): return tf_net, ref_net - @pytest.mark.parametrize('x_shape', [[1], [5]]) - @pytest.mark.parametrize('y_shape', [[1], [5]]) + @pytest.mark.parametrize('x_shape', [[], [1], [5]]) + @pytest.mark.parametrize('y_shape', [[], [1], [5]]) @pytest.mark.precommit_tf_fe @pytest.mark.nightly @pytest.mark.xfail(condition=platform.system() in ('Darwin', 'Linux') and platform.machine() in ['arm', 'armv7l',