(stderr)
| 2635 | assert is_stderr_ok(stderr), make_error_msg(stderr) |
| 2636 | |
| 2637 | def make_error_msg(stderr): |
| 2638 | return "Did not find thread dump in stderr. stderr:\n%s" % (stderr,) |
| 2639 | |
| 2640 | def is_stderr_ok(stderr): |
| 2641 | return "Thread Dump" in stderr and "Thread pydevd.CommandThread (daemon: True, pydevd thread: True)" in stderr |
no outgoing calls
no test coverage detected