diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-02-07 17:05:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 17:05:49 +0100 |
commit | 4799aaac15285833341d1e0471a2559bd325982f (patch) | |
tree | ac0913664e2623aff672054940a2adce67812740 /test_util/src | |
parent | bf22f114a6e049744866ebaba48faec2cb86549b (diff) |
refactor: factor out CDP message types (#13551)
Diffstat (limited to 'test_util/src')
-rw-r--r-- | test_util/src/pty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test_util/src/pty.rs b/test_util/src/pty.rs index a8298d7a5..9ca02f857 100644 --- a/test_util/src/pty.rs +++ b/test_util/src/pty.rs @@ -36,7 +36,7 @@ pub fn create_pty( .unwrap() .wait() .unwrap(); - unreachable!(); + std::process::exit(0); } } |