Skip to content

Commit

Permalink
ci: fix failing upgrade_prompt test on main (denoland#22193)
Browse files Browse the repository at this point in the history
Understandably accidentally caused by
denoland#22187
  • Loading branch information
dsherret authored Jan 30, 2024
1 parent d923705 commit 93c8e7c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test_util/src/servers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,15 @@ async fn main_server(
.unwrap(),
);
}
(&Method::GET, "/canary-latest.txt") => {
(
&Method::GET,
"/canary-latest.txt"
| "/canary-x86_64-apple-darwin-latest.txt"
| "/canary-aarch64-apple-darwin-latest.txt"
| "/canary-x86_64-unknown-linux-latest.txt"
| "/canary-aarch64-unknown-linux-latest.txt"
| "/canary-x86_64-pc-windows-msvc-latest.txt",
) => {
return Ok(
Response::builder()
.status(StatusCode::OK)
Expand Down

0 comments on commit 93c8e7c

Please sign in to comment.