Skip to content

Commit

Permalink
Merge branch 'main' into fix-asarray
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed Jun 12, 2024
2 parents 1b0d380 + 43d9a01 commit 9cb9b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brainunit/math/_compat_numpy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_full_like(self):
self.assertTrue(jnp.all(result == 4))

q = [1, 2, 3] * bu.second
result_q = bu.math.full_like(q, 4 * bu.second)
result_q = bu.math.full_like(q, 4, unit=bu.second)
assert_quantity(result_q, jnp.full_like(jnp.array([1, 2, 3]), 4), bu.second)

def test_diag(self):
Expand Down

0 comments on commit 9cb9b3e

Please sign in to comment.