(self)
| 497 | self._test_wait_close(observable, observable) |
| 498 | |
| 499 | def test_map_wait_close(self): |
| 500 | observable = self.create_observable() |
| 501 | mapped_observable = observable.map(lambda chunk: chunk + '_x') |
| 502 | |
| 503 | self._test_wait_close(observable, mapped_observable) |
| 504 | |
| 505 | def test_time_buffer_wait_close(self): |
| 506 | observable = self.create_observable() |
nothing calls this directly
no test coverage detected