(self)
| 186 | assert False, "Did not raise Failure for WatcherError!" |
| 187 | |
| 188 | def does_not_apply_to_timeout_errors(self): |
| 189 | with raises(CommandTimedOut): |
| 190 | self._runner(klass=_TimingOutRunner).run( |
| 191 | _, timeout=1, warn=True |
| 192 | ) |
| 193 | |
| 194 | class hide: |
| 195 | @trap |