Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Oct 12, 2024
1 parent 62ff2d8 commit 581b608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/command_initial_setup_from_launcher_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn command_initial_setup() {
.assert()
.success()
.stdout(predicate::str::is_empty())
.stderr(predicate::str::is_empty().or(predicate::str::starts_with("Checking standard library notarization").and(predicate::str::ends_with("done."))));
.stderr(predicate::eq("Installing Julia 1.11.0+0.x64.linux.gnu\n").or(predicate::str::starts_with("Installing Julia 1.11.0+0.x64.linux.gnu\nChecking standard library notarization").and(predicate::str::ends_with("done."))));

depot_dir
.child(Path::new("juliaup").join("juliaup.json"))
Expand Down

0 comments on commit 581b608

Please sign in to comment.