Skip to content

Commit

Permalink
Move cache age warning to stderr (#114)
Browse files Browse the repository at this point in the history
Fixes #113
  • Loading branch information
michaeldel authored Apr 16, 2020
1 parent 5dd9457 commit a45c196
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ fn check_cache(args: &Args) {
if args.flag_quiet {
return;
}
println!(
eprintln!(
"{}",
Color::Yellow.paint(format!(
"The cache hasn't been updated for more than {} days.\n\
Expand Down
4 changes: 2 additions & 2 deletions tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ fn test_quiet_old_cache() {
.args(&["tldr"])
.assert()
.success()
.stdout(contains("The cache hasn't been updated for more than "));
.stderr(contains("The cache hasn't been updated for more than "));

testenv
.command()
.args(&["tldr", "--quiet"])
.assert()
.success()
.stdout(contains("The cache hasn't been updated for more than ").not());
.stderr(contains("The cache hasn't been updated for more than ").not());
}

#[test]
Expand Down

0 comments on commit a45c196

Please sign in to comment.