Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vtavana committed Nov 12, 2024
1 parent b43e7e3 commit 9954afa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 9954afa

Please sign in to comment.