(self, expectation, freeze=None, explain=True, observe=True)
| 200 | return latest_of(reasons.values()) |
| 201 | |
| 202 | def wait_until_realized(self, expectation, freeze=None, explain=True, observe=True): |
| 203 | if explain: |
| 204 | log.info("Waiting for {0!r}", expectation) |
| 205 | return self._wait_until_realized(expectation, freeze, explain, observe) |
| 206 | |
| 207 | def wait_for(self, expectation, freeze=None, explain=True): |
| 208 | assert expectation.has_lower_bound, ( |