Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
I forgot to update the test, because we now always send a body back in a error case.
  • Loading branch information
RemcoSmitsDev committed Jan 11, 2025
1 parent d524cf0 commit f896812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/debugger_ui/src/tests/debugger_panel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ async fn test_handle_error_run_in_terminal_reverse_request(
send_response.store(true, Ordering::SeqCst);

assert!(!response.success);
assert!(response.body.is_none());
assert!(response.body.is_some());
}
})
.await;
Expand Down

0 comments on commit f896812

Please sign in to comment.