From 9c7258ce6ee2b7b6700dee7009317bcb8c6abff9 Mon Sep 17 00:00:00 2001 From: Remi Bettan Date: Wed, 19 May 2021 10:50:03 +0300 Subject: [PATCH] minor improvement --- unit-tests/func/extrinsics/test-extrinsics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit-tests/func/extrinsics/test-extrinsics.cpp b/unit-tests/func/extrinsics/test-extrinsics.cpp index 6caf5c45584..33f1eeba699 100644 --- a/unit-tests/func/extrinsics/test-extrinsics.cpp +++ b/unit-tests/func/extrinsics/test-extrinsics.cpp @@ -52,7 +52,7 @@ struct position_and_rotation { if (fabs(pos_and_rot[i][j] - other.pos_and_rot[i][j]) > tolerance) { - std::cout << "i,j = " << i << "," << j << ", pos_and_rot[i][j] = " << (double)pos_and_rot[i][j] << ", target = " << (double)target << ", tolerance = " << tolerance << std::endl; + std::cout << "i,j = " << i << "," << j << ", pos_and_rot[i][j] = " << (double)pos_and_rot[i][j] << ", tolerance = " << tolerance << std::endl; return false; } }