Skip to content

Commit

Permalink
[Tests] Fixed Error update in output comparison (openvinotoolkit#23677)
Browse files Browse the repository at this point in the history
### Details:
- *Fixed the order of parameters in `error.update` call to avoid
misunderstanding in error message.*

### Tickets:
 - *N/A*
  • Loading branch information
a-sidorova authored and itikhono committed Mar 28, 2024
1 parent b073f98 commit 94f85c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ void compare(const ov::Tensor& expected, const ov::Tensor& actual, double abs_th
continue;
}

bool status = error.update(expected_value, actual_value, i);
bool status = error.update(actual_value, expected_value, i);
#ifdef NDEBUG
if (!status) {
break;
Expand Down

0 comments on commit 94f85c5

Please sign in to comment.