(self)
| 275 | threading_helper.threading_cleanup(*self.thread_key) |
| 276 | |
| 277 | def get_output_without_xpeer(self): |
| 278 | test_output = self.output.getvalue() |
| 279 | return re.sub(r'(.*?)^X-Peer:\s*\S+\n(.*)', r'\1\2', |
| 280 | test_output, flags=re.MULTILINE|re.DOTALL) |
| 281 | |
| 282 | def testBasic(self): |
| 283 | # connect |
no test coverage detected