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 52cb1e8 commit 4d92a23
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 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,16 @@ fn command_initial_setup() {
.assert()
.success()
.stdout(predicate::str::is_empty())
.stderr(predicate::str::starts_with("Installing Julia 1.11.0").and(predicate::str::contains("apple.darwin14").not().or(predicate::str::contains("Checking standard library notarization").and(predicate::str::ends_with("done.\n")))));
.stderr(
predicate::str::starts_with("Installing Julia 1.11.0").and(
predicate::str::contains("apple.darwin14")
.not()
.or(
predicate::str::contains("Checking standard library notarization")
.and(predicate::str::ends_with("done.\n")),
),
),
);

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

0 comments on commit 4d92a23

Please sign in to comment.