Skip to content

Commit 5c0d146

Browse files
authored
[Tests] Fixed Error update in output comparison (openvinotoolkit#23677)
### Details: - *Fixed the order of parameters in `error.update` call to avoid misunderstanding in error message.* ### Tickets: - *N/A*
1 parent 2844463 commit 5c0d146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/test_utils/common_test_utils/src/ov_tensor_utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ void compare(const ov::Tensor& expected, const ov::Tensor& actual, double abs_th
445445
continue;
446446
}
447447

448-
bool status = error.update(expected_value, actual_value, i);
448+
bool status = error.update(actual_value, expected_value, i);
449449
#ifdef NDEBUG
450450
if (!status) {
451451
break;

0 commit comments

Comments
 (0)