Skip to content

Commit

Permalink
Nit
Browse files Browse the repository at this point in the history
  • Loading branch information
mariosasko committed Dec 16, 2024
1 parent 8e36c75 commit 9b430fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, data):
self.data = data

def __array__(self, dtype=None, copy=None):
return self.data
return np.asarray(self.data, dtype=dtype, copy=copy)

p = mat._HeatMapper(ArrayLike(self.x_norm), **self.default_kws)
npt.assert_array_equal(p.plot_data, self.x_norm)
Expand Down

0 comments on commit 9b430fe

Please sign in to comment.