Skip to content

Commit e895b22

Browse files
committed
last bit of coverage
1 parent 500703e commit e895b22

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/test_Wrappers.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ def clean(self):
5959
Ainv = WrappedClass(A)
6060
assert Ainv.A is A
6161
assert Ainv.solver.A is A
62+
63+
rhs = np.array([0.9, 1.0])
64+
npt.assert_equal(Ainv @ rhs, rhs)
65+
6266
Ainv.clean()
6367
assert Ainv.solver.A is None
6468

0 commit comments

Comments
 (0)