Skip to content

Commit 9954afa

Browse files
committed
fix typo
1 parent b43e7e3 commit 9954afa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_sort.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def test_ndarray(self, dtype, axis):
6767
expected = np_array.argsort(axis=axis)
6868
assert_dtype_allclose(result, expected)
6969

70-
# this test validates that all diffeernt options of kind in dpnp are stable
70+
# this test validates that all different options of kind in dpnp are stable
7171
@pytest.mark.parametrize("kind", [None, "stable", "mergesort", "radixsort"])
7272
def test_kind(self, kind):
7373
np_array = numpy.repeat(numpy.arange(10), 10)
@@ -319,7 +319,7 @@ def test_ndarray(self, dtype, axis):
319319
np_array.sort(axis=axis)
320320
assert_dtype_allclose(dp_array, np_array)
321321

322-
# this test validates that all diffeernt options of kind in dpnp are stable
322+
# this test validates that all different options of kind in dpnp are stable
323323
@pytest.mark.parametrize("kind", [None, "stable", "mergesort", "radixsort"])
324324
def test_kind(self, kind):
325325
np_array = numpy.repeat(numpy.arange(10), 10)

0 commit comments

Comments
 (0)