diff --git a/src/core/tests/visitors/op/interpolate.cpp b/src/core/tests/visitors/op/interpolate.cpp index fe375514439..10fc680896b 100644 --- a/src/core/tests/visitors/op/interpolate.cpp +++ b/src/core/tests/visitors/op/interpolate.cpp @@ -81,8 +81,7 @@ TEST(attributes, interpolate_op4) { TEST(attributes, interpolate_op11) { NodeBuilder::get_ops().register_factory(); const auto img = make_shared(element::f32, Shape{1, 3, 32, 32}); - const auto scales = op::v0::Constant::create(element::f32, {2}, {2.0, 2.0}); - const auto axes = op::v0::Constant::create(element::i32, {2}, {2, 3}); + const auto scales = op::v0::Constant::create(element::f32, {4}, {1.0, 1.0, 2.0, 2.0}); op::v11::Interpolate::InterpolateAttrs attrs; attrs.mode = op::v11::Interpolate::InterpolateMode::BILINEAR_PILLOW; @@ -94,7 +93,7 @@ TEST(attributes, interpolate_op11) { attrs.antialias = true; attrs.cube_coeff = -0.75; - auto interpolate = make_shared(img, scales, axes, attrs); + auto interpolate = make_shared(img, scales, attrs); NodeBuilder builder(interpolate, {img, scales}); auto g_interpolate = ov::as_type_ptr(builder.create());