Skip to content

Commit

Permalink
s/no_progress: true/progress: ProgressConfig::Never/g
Browse files Browse the repository at this point in the history
  • Loading branch information
Schniz committed May 26, 2024
1 parent 565a5ce commit 6edc0ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/commands/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use crate::alias::create_alias;
use crate::arch::get_safe_arch;
use crate::config::FnmConfig;
use crate::downloader::{install_node_dist, Error as DownloaderError};
use crate::log_level::LogLevel;
use crate::lts::LtsType;
use crate::outln;
use crate::progress::ProgressConfig;
Expand Down Expand Up @@ -238,7 +237,7 @@ mod tests {
version: UserVersion::from_str("12.0.0").ok(),
lts: false,
latest: false,
no_progress: true,
progress: ProgressConfig::Never,
}
.apply(&config)
.expect("Can't install");
Expand All @@ -264,7 +263,7 @@ mod tests {
version: None,
lts: false,
latest: true,
no_progress: true,
progress: ProgressConfig::Never,
}
.apply(&config)
.expect("Can't install");
Expand Down

0 comments on commit 6edc0ed

Please sign in to comment.