Skip to content

Commit

Permalink
remove lsp test dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
xunilrj committed Sep 10, 2024
1 parent 87e210a commit 88afac8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sway-lsp/tests/integration/code_actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,6 @@ pub(crate) async fn code_action_struct_request(server: &ServerState, uri: &Url)
}

pub(crate) async fn code_action_struct_type_params_request(server: &ServerState, uri: &Url) {
dbg!(uri);
let params = create_code_action_params(
uri.clone(),
Range {
Expand Down Expand Up @@ -401,7 +400,7 @@ pub(crate) async fn code_action_struct_type_params_request(server: &ServerState,
));

let actual = send_request(server, &params).await;
pretty_assertions::assert_eq!(expected, actual);
assert_eq!(expected, actual);
}

pub(crate) async fn code_action_struct_existing_impl_request(server: &ServerState, uri: &Url) {
Expand Down

0 comments on commit 88afac8

Please sign in to comment.