(self)
| 128 | """Base TestCase for tests involving clients making requests.""" |
| 129 | |
| 130 | def setUp(self): |
| 131 | # The HistoryPanel keeps track of previous stores in memory. |
| 132 | # This bleeds into other tests and violates their idempotency. |
| 133 | # Clear the store before each test. |
| 134 | get_store().clear() |
| 135 | super().setUp() |