Run the function `do` on this test case, expanding arguments
(self, do)
| 86 | self.tags = frozenset(tags) # prevent shared tags |
| 87 | |
| 88 | def check(self, do): |
| 89 | """ |
| 90 | Run the function `do` on this test case, expanding arguments |
| 91 | """ |
| 92 | do(self.a, self.b, tags=self.tags) |
| 93 | |
| 94 | def __repr__(self): |
| 95 | return f'<LinalgCase: {self.name}>' |