Skip to content

Commit 4ccaf4a

Browse files
prady0tlucascolley
andauthored
Update tests/test_funcs.py
Co-authored-by: Lucas Colley <lucas.colley8@gmail.com>
1 parent 6f644b3 commit 4ccaf4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1944,7 +1944,7 @@ def test_integral(self, xp: ModuleType):
19441944
def test_2d(self, xp: ModuleType):
19451945
a = xp.asarray([[1 + 1j, 1 - 1j], [-1 + 1j, -1 - 1j]])
19461946
expected = xp.asarray(
1947-
[[np.pi / 4, -np.pi / 4], [3 * np.pi / 4, -3 * np.pi / 4]]
1947+
[[xp.pi / 4, -xp.pi / 4], [3 * xp.pi / 4, -3 * xp.pi / 4]]
19481948
)
19491949
res = angle(a)
19501950
xp_assert_equal(res, expected)

0 commit comments

Comments
 (0)