Skip to content

Commit

Permalink
Updated test_no_dif_candidates to not make use of the Microsoft symbo…
Browse files Browse the repository at this point in the history
…l server.
  • Loading branch information
tobias-wilfert committed Sep 16, 2024
1 parent b83f2a4 commit 32aa0d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/symbolicator/src/endpoints/symbolicate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ mod tests {
"sources": []
}"#;
let mut payload: SymbolicationRequestBody = serde_json::from_str(payload).unwrap();
payload.sources = Some(vec![test::microsoft_symsrv()]);

let (_srv, source) = test::symbol_server();
payload.sources = Some(vec![source]);

let response = Client::new()
.post(server.url("/symbolicate"))
Expand Down
Binary file not shown.

0 comments on commit 32aa0d2

Please sign in to comment.