diff options
Diffstat (limited to 'helix-dap/src/client.rs')
-rw-r--r-- | helix-dap/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index 9f269a53..37f264ec 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -272,7 +272,7 @@ impl Client { .expect("Expected initialized event") { Payload::Event(Event { event, .. }) => { - if event == "initialized".to_owned() { + if event == *"initialized" { Ok(()) } else { unreachable!() @@ -308,7 +308,7 @@ impl Client { pub async fn wait_for_stopped(&mut self) -> Result<()> { match self.server_rx.recv().await.expect("Expected stopped event") { Payload::Event(Event { event, .. }) => { - if event == "stopped".to_owned() { + if event == *"stopped" { Ok(()) } else { unreachable!() |