(self)
| 347 | self._test_close(observable, observable) |
| 348 | |
| 349 | def test_map_close(self): |
| 350 | observable = self.create_observable() |
| 351 | mapped_observable = observable.map(lambda chunk: chunk + '_x') |
| 352 | |
| 353 | self._test_close(observable, mapped_observable) |
| 354 | |
| 355 | def test_time_buffer_close(self): |
| 356 | observable = self.create_observable() |
nothing calls this directly
no test coverage detected