From 9377facab9716e9e4a4e269c474461c22fa03795 Mon Sep 17 00:00:00 2001 From: Ioana Ghiban Date: Tue, 6 Feb 2024 08:53:46 +0100 Subject: [PATCH] [NFC] Fix typos in test_sobel.cpp --- test/api/test_sobel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/api/test_sobel.cpp b/test/api/test_sobel.cpp index 431586d85..b0370b26a 100644 --- a/test/api/test_sobel.cpp +++ b/test/api/test_sobel.cpp @@ -71,7 +71,7 @@ class Sobel3x3Test : public test::KernelTest { this->test::KernelTest::test( kernel, &tested_array_layouts, &tested_borders, &element_generator); } -}; // end of class class Sobel3x3Test +}; // end of class Sobel3x3Test template class Sobel : public testing::Test {}; @@ -93,7 +93,7 @@ TYPED_TEST(Sobel, Horizontal3x3) { // Tests sobel_3x3_vertical__ API. TYPED_TEST(Sobel, Vertical3x3) { using KernelTestParams = SobelKernelTestParams; - // Horizontal 3x3 Sobel operator. + // Vertical 3x3 Sobel operator. test::Array2D mask{3, 3}; // clang-format off mask.set(0, 0, {-1, -2, -1}); -- GitLab