Skip to content

Commit

Permalink
Add new line after edit
Browse files Browse the repository at this point in the history
  • Loading branch information
RemcoSmitsDev committed Jan 18, 2025
1 parent ff52087 commit 68f128f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/debugger_ui/src/tests/debugger_panel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use dap::{
};
use debugger_panel::ThreadStatus;
use editor::{
actions::{self},
actions::{self, MoveDown},
Editor, EditorMode, MultiBuffer,
};
use gpui::{BackgroundExecutor, TestAppContext, VisualTestContext};
Expand Down Expand Up @@ -1133,7 +1133,7 @@ async fn test_send_breakpoints_when_editor_has_been_saved(
window
.update(cx, |editor, cx| {
editor.move_up(&actions::MoveUp, cx);
editor.insert("new text", cx);
editor.insert("new text\n", cx);

cx.dispatch_action(Box::new(Save {
save_intent: Some(workspace::SaveIntent::Save),
Expand Down

0 comments on commit 68f128f

Please sign in to comment.