From 31b24c2289a230f6574e36783710ac8b58ed3226 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:45:29 -0500 Subject: [PATCH] spelling: skipping Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/arg_reduce_tests.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/arg_reduce_tests.cpp b/tests/arg_reduce_tests.cpp index 7e3750e7b..b571c8f61 100644 --- a/tests/arg_reduce_tests.cpp +++ b/tests/arg_reduce_tests.cpp @@ -76,7 +76,7 @@ TEST_CASE("test arg reduce small") { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}); if (!metal::is_available()) { - INFO("Skiping arg reduction gpu tests"); + INFO("Skipping arg reduction gpu tests"); return; } @@ -106,7 +106,7 @@ TEST_CASE("test arg reduce small") { TEST_CASE("test arg reduce against cpu") { if (!metal::is_available()) { - INFO("Skiping arg reduction gpu tests"); + INFO("Skipping arg reduction gpu tests"); return; } @@ -148,7 +148,7 @@ void test_arg_reduce_small_bool( TEST_CASE("test arg reduce bool") { if (!metal::is_available()) { - INFO("Skiping arg reduction gpu tests"); + INFO("Skipping arg reduction gpu tests"); return; } auto x = array( @@ -201,7 +201,7 @@ TEST_CASE("test arg reduce irregular strides") { Device::cpu, x, ArgReduce::ArgMin, {4, 2}, 2, {0, 0, 1, 1, 1, 1, 2, 2}); if (!metal::is_available()) { - INFO("Skiping arg reduction gpu tests"); + INFO("Skipping arg reduction gpu tests"); return; } }