Skip to content

Commit f148d72

Browse files
committed
Rename test
1 parent e6ee504 commit f148d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_ndarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class TestToList:
111111
@pytest.mark.parametrize(
112112
"data", [[1, 2], [[1, 2], [3, 4]]], ids=["1d", "2d"]
113113
)
114-
def test_1d(self, data):
114+
def test_basic(self, data):
115115
a = numpy.array(data)
116116
ia = dpnp.array(a)
117117
assert_array_equal(ia.tolist(), a.tolist())

0 commit comments

Comments
 (0)