Skip to content

Commit

Permalink
Fix outside contributions CI (#1838)
Browse files Browse the repository at this point in the history
  • Loading branch information
drknzz authored Mar 7, 2024
1 parent a3391dc commit 6262341
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions crates/forge/tests/e2e/running.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ fn simple_package_with_git_dependency() {

assert_stdout_contains(
output,
indoc! {r"
[..]Updating git repository https://github.com/foundry-rs/starknet-foundry
formatdoc!(
r"
[..]Updating git repository https://github.com/{}
[..]Compiling[..]
[..]Finished[..]
Expand Down Expand Up @@ -133,7 +134,9 @@ fn simple_package_with_git_dependency() {
Failures:
tests::test_simple::test_failing
tests::test_simple::test_another_failing
"},
",
remote_url.trim_end_matches(".git")
),
);
}

Expand Down Expand Up @@ -797,8 +800,9 @@ fn init_new_project_test() {
.success();
assert_stdout_contains(
output,
indoc! {r"
[..]Updating git repository https://github.com/foundry-rs/starknet-foundry
formatdoc!(
r"
[..]Updating git repository https://github.com/{}
[..]Compiling test_name v0.1.0[..]
[..]Finished[..]
Expand All @@ -809,7 +813,9 @@ fn init_new_project_test() {
[PASS] tests::test_contract::test_increase_balance [..]
[PASS] tests::test_contract::test_cannot_increase_balance_with_zero_value [..]
Tests: 2 passed, 0 failed, 0 skipped, 0 ignored, 0 filtered out
"},
",
remote_url.trim_end_matches(".git")
),
);
}

Expand Down

0 comments on commit 6262341

Please sign in to comment.