Skip to content

Commit

Permalink
tests: Fix failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Nov 2, 2024
1 parent 26e159c commit 4f749e9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions crates/config/tests/toolchain_config_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ deno: {{}}
assert_eq!(
config.bun.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/bun_tool-v0.13.0/bun_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/bun_tool-v0.14.0/bun_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -403,7 +403,7 @@ deno:
assert_eq!(
config.deno.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/deno_tool-v0.12.0/deno_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/deno_tool-v0.13.0/deno_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -530,7 +530,7 @@ node:
assert_eq!(
config.node.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/node_tool-v0.12.2/node_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_tool-v0.13.0/node_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -634,7 +634,7 @@ node:
assert_eq!(
config.node.unwrap().npm.plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.1/node_depman_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.14.0/node_depman_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -726,7 +726,7 @@ node:
assert_eq!(
config.node.unwrap().pnpm.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.1/node_depman_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.14.0/node_depman_tool.wasm".into()
}))
);
}
Expand All @@ -750,7 +750,7 @@ node:
assert_eq!(
config.node.unwrap().pnpm.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.1/node_depman_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.14.0/node_depman_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -852,7 +852,7 @@ node:
assert_eq!(
config.node.unwrap().yarn.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.1/node_depman_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.14.0/node_depman_tool.wasm".into()
}))
);
}
Expand All @@ -876,7 +876,7 @@ node:
assert_eq!(
config.node.unwrap().yarn.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.13.1/node_depman_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_depman_tool-v0.14.0/node_depman_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -978,7 +978,7 @@ node:
assert_eq!(
config.node.unwrap().bun.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/bun_tool-v0.13.0/bun_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/bun_tool-v0.14.0/bun_tool.wasm".into()
}))
);
}
Expand All @@ -1002,7 +1002,7 @@ node:
assert_eq!(
config.node.unwrap().bun.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/bun_tool-v0.13.0/bun_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/bun_tool-v0.14.0/bun_tool.wasm".into()
}))
);
}
Expand Down Expand Up @@ -1235,7 +1235,7 @@ rust:
assert_eq!(
config.rust.unwrap().plugin.unwrap(),
PluginLocator::Url(Box::new(UrlLocator {
url: "https://github.com/moonrepo/tools/releases/download/rust_tool-v0.11.0/rust_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/rust_tool-v0.12.0/rust_tool.wasm".into()
}))
);
}
Expand Down

0 comments on commit 4f749e9

Please sign in to comment.