From 9954afadc028e53f9d92f8e408537b7673734a10 Mon Sep 17 00:00:00 2001 From: Vahid Tavanashad Date: Tue, 12 Nov 2024 07:54:22 -0800 Subject: [PATCH] fix typo --- tests/test_sort.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_sort.py b/tests/test_sort.py index 67f14fff224..07156b5d882 100644 --- a/tests/test_sort.py +++ b/tests/test_sort.py @@ -67,7 +67,7 @@ def test_ndarray(self, dtype, axis): expected = np_array.argsort(axis=axis) assert_dtype_allclose(result, expected) - # this test validates that all diffeernt options of kind in dpnp are stable + # this test validates that all different options of kind in dpnp are stable @pytest.mark.parametrize("kind", [None, "stable", "mergesort", "radixsort"]) def test_kind(self, kind): np_array = numpy.repeat(numpy.arange(10), 10) @@ -319,7 +319,7 @@ def test_ndarray(self, dtype, axis): np_array.sort(axis=axis) assert_dtype_allclose(dp_array, np_array) - # this test validates that all diffeernt options of kind in dpnp are stable + # this test validates that all different options of kind in dpnp are stable @pytest.mark.parametrize("kind", [None, "stable", "mergesort", "radixsort"]) def test_kind(self, kind): np_array = numpy.repeat(numpy.arange(10), 10)