Skip to content

Commit

Permalink
Merge branch 'master' into kayagokalp/bump-to-0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
kayagokalp authored May 28, 2024
2 parents 5003086 + 7609353 commit 9f0d96b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pub const FUEL_TOOLCHAIN_TOML_FILE: &str = "fuel-toolchain.toml";
pub const FUELS_VERSION_FILE: &str = "fuels_version";

pub const CHANNEL_LATEST_URL: &str =
"https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-beta-5.toml";
pub const CHANNEL_LATEST_FILE_NAME: &str = "channel-fuel-beta-5.toml";
"https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-testnet.toml";
pub const CHANNEL_LATEST_FILE_NAME: &str = "channel-fuel-testnet.toml";
pub const CHANNEL_NIGHTLY_FILE_NAME: &str = "channel-fuel-nightly.toml";
pub const CHANNEL_BETA_1_FILE_NAME: &str = "channel-fuel-beta-1.toml";
pub const CHANNEL_BETA_2_FILE_NAME: &str = "channel-fuel-beta-2.toml";
Expand Down
6 changes: 5 additions & 1 deletion tests/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ fn fuelup_component_add() -> Result<()> {
let _ = cfg.fuelup(&["component", "add", "fuel-core"]);
expect_files_exist(
&cfg.toolchain_bin_dir("my_toolchain"),
&["fuel-core", "fuel-core-keygen"],
&[
"fuel-core",
"fuel-core-keygen",
"fuel-core-wasm-executor.wasm",
],
);
})?;

Expand Down

0 comments on commit 9f0d96b

Please sign in to comment.