Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RemcoSmitsDev committed Dec 27, 2024
1 parent e0891a1 commit bfdf12c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/debugger_ui/src/tests/attach_modal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async fn test_show_attach_modal_and_select_process(
assert_eq!(
json!({
"request": "attach",
// note we filterd out all processes in FakeAdapter::attach_processes,
// note we filtered out all processes in FakeAdapter::attach_processes,
// that is not equal to the current process id
"process_id": std::process::id(),
}),
Expand All @@ -165,7 +165,7 @@ async fn test_show_attach_modal_and_select_process(

let names = attach_modal.update(cx, |modal, cx| attach_modal::procss_names(&modal, cx));

// we filterd out all processes that are not the current process(zed itself)
// we filtered out all processes that are not the current process(zed itself)
assert_eq!(1, names.len());
})
.unwrap();
Expand Down

0 comments on commit bfdf12c

Please sign in to comment.