diff --git a/src/inference/src/cpp/compiled_model.cpp b/src/inference/src/cpp/compiled_model.cpp index 9ccf0ca4d2a9ba..14ae5b98d1826a 100644 --- a/src/inference/src/cpp/compiled_model.cpp +++ b/src/inference/src/cpp/compiled_model.cpp @@ -74,7 +74,7 @@ const ov::Output& CompiledModel::input(size_t i) const { OPENVINO_ASSERT(i < _impl->inputs().size(), "Cannot get input for index: ", i, - " outputs size is ", + " inputs size is ", _impl->inputs().size()); return _impl->inputs().at(i); });