summaryrefslogtreecommitdiff
path: root/test_util/src
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-01-30 16:13:07 -0500
committerGitHub <noreply@github.com>2024-01-30 21:13:07 +0000
commit93c8e7c82197445a268476eb3115b25fd5ddb0ce (patch)
treed07ade2f3fd0421422b934aa12f383992b1aefbe /test_util/src
parentd923705d9d6e9171332fea93e13f5e2cb7ffa5fe (diff)
ci: fix failing upgrade_prompt test on main (#22193)
Understandably accidentally caused by https://github.com/denoland/deno/pull/22187
Diffstat (limited to 'test_util/src')
-rw-r--r--test_util/src/servers/mod.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/test_util/src/servers/mod.rs b/test_util/src/servers/mod.rs
index d4c40f4fc..a66c84058 100644
--- a/test_util/src/servers/mod.rs
+++ b/test_util/src/servers/mod.rs
@@ -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)