Skip to content

Commit

Permalink
Update tests/command_initial_setup_from_launcher_test.rs
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
davidanthoff and github-actions[bot] authored Oct 12, 2024
1 parent 2c5eaf9 commit 048b95e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/command_initial_setup_from_launcher_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ fn command_initial_setup() {
.env("JULIAUP_DEPOT_PATH", depot_dir.path())
.assert()
.success()
.stdout(predicate::str::is_empty().or(predicate::str::starts_with("Checking standard library notarization").and(predicate::str::ends_with("done."))));
.stdout(
predicate::str::is_empty().or(predicate::str::starts_with(
"Checking standard library notarization",
)
.and(predicate::str::ends_with("done."))),
);

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

0 comments on commit 048b95e

Please sign in to comment.