From 97b1b6e31211b6a1b95a8cacb3d3d762a718e15f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Podgain=C3=B5i?= Date: Thu, 18 Apr 2024 16:17:31 +0200 Subject: [PATCH] Fix typo in conformity tests --- conformity/opencv/test_float_conv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conformity/opencv/test_float_conv.cpp b/conformity/opencv/test_float_conv.cpp index 73baa0774..8f7ca6a81 100644 --- a/conformity/opencv/test_float_conv.cpp +++ b/conformity/opencv/test_float_conv.cpp @@ -198,8 +198,8 @@ std::vector& float_conversion_tests_get() { TEST("Unsigned Int8 to Float32, fill, 3 channel", (test_int8_to_float32_random), exec_int8_to_float32), TEST("Unsigned Int8 to Float32, fill, 4 channel", (test_int8_to_float32_random), exec_int8_to_float32), - TEST("Signed Int8 Float32, custom", test_int8_to_float32_custom, exec_int8_to_float32), - TEST("Unigned Int8 Float32, custom", test_int8_to_float32_custom, exec_int8_to_float32), + TEST("Signed Int8 to Float32, custom", test_int8_to_float32_custom, exec_int8_to_float32), + TEST("Unigned Int8 to Float32, custom", test_int8_to_float32_custom, exec_int8_to_float32), }; // clang-format on return tests; -- GitLab