@@ -304,7 +304,7 @@ forgetest!(can_init_repo_with_config, |prj, cmd| {
304304 . assert_success( )
305305 . stdout_eq( str ![ [ r#"
306306Initializing [..]...
307- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
307+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
308308 Installed forge-std[..]
309309 Initialized forge project
310310
@@ -353,7 +353,7 @@ forgetest!(can_init_no_git, |prj, cmd| {
353353
354354 cmd. arg( "init" ) . arg( prj. root( ) ) . arg( "--no-git" ) . assert_success( ) . stdout_eq( str ![ [ r#"
355355Initializing [..]...
356- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
356+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
357357 Installed forge-std[..]
358358 Initialized forge project
359359
@@ -438,7 +438,7 @@ Run with the `--force` flag to initialize regardless.
438438 . assert_success( )
439439 . stdout_eq( str ![ [ r#"
440440Initializing [..]...
441- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
441+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
442442 Installed forge-std[..]
443443 Initialized forge project
444444
@@ -478,7 +478,7 @@ Run with the `--force` flag to initialize regardless.
478478 . assert_success( )
479479 . stdout_eq( str ![ [ r#"
480480Initializing [..]...
481- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
481+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
482482 Installed forge-std[..]
483483 Initialized forge project
484484
@@ -520,7 +520,7 @@ Run with the `--force` flag to initialize regardless.
520520 . assert_success( )
521521 . stdout_eq( str ![ [ r#"
522522Initializing [..]...
523- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
523+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
524524 Installed forge-std[..]
525525 Initialized forge project
526526
@@ -561,7 +561,7 @@ forgetest!(can_init_using_parent_repo, |prj, cmd| {
561561 cmd. arg( "init" ) . arg( folder) . arg( "--force" ) . arg( "--use-parent-git" ) . assert_success( ) . stdout_eq(
562562 str ![ [ r#"
563563Initializing [..]...
564- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
564+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
565565 Installed forge-std[..]
566566 Initialized forge project
567567
@@ -592,7 +592,7 @@ forgetest!(can_init_vscode, |prj, cmd| {
592592
593593 cmd. arg( "init" ) . arg( prj. root( ) ) . arg( "--vscode" ) . assert_success( ) . stdout_eq( str ![ [ r#"
594594Initializing [..]...
595- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
595+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
596596 Installed forge-std[..]
597597 Initialized forge project
598598
@@ -712,7 +712,7 @@ forgetest!(can_clone, |prj, cmd| {
712712 . stdout_eq( str ![ [ r#"
713713Downloading the source code of 0x044b75f554b886A065b9567891e45c79542d7357 from Etherscan...
714714Initializing [..]...
715- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
715+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
716716 Installed forge-std[..]
717717 Initialized forge project
718718Collecting the creation information of 0x044b75f554b886A065b9567891e45c79542d7357 from Etherscan...
@@ -760,7 +760,7 @@ forgetest!(can_clone_no_remappings_txt, |prj, cmd| {
760760 . stdout_eq( str ![ [ r#"
761761Downloading the source code of 0x33e690aEa97E4Ef25F0d140F1bf044d663091DAf from Etherscan...
762762Initializing [..]...
763- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
763+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
764764 Installed forge-std[..]
765765 Initialized forge project
766766Collecting the creation information of 0x33e690aEa97E4Ef25F0d140F1bf044d663091DAf from Etherscan...
@@ -819,7 +819,7 @@ forgetest!(can_init_project, |prj, cmd| {
819819
820820 cmd. args( [ "init" ] ) . arg( prj. root( ) ) . assert_success( ) . stdout_eq( str ![ [ r#"
821821Initializing [..]...
822- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
822+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
823823 Installed forge-std[..]
824824 Initialized forge project
825825
@@ -847,7 +847,7 @@ forgetest!(can_init_vyper_project, |prj, cmd| {
847847
848848 cmd. args( [ "init" , "--vyper" ] ) . arg( prj. root( ) ) . assert_success( ) . stdout_eq( str ![ [ r#"
849849Initializing [..]...
850- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
850+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
851851 Installed forge-std[..]
852852 Initialized forge project
853853
@@ -889,7 +889,7 @@ forgetest!(can_clone_with_node_modules, |prj, cmd| {
889889 . stdout_eq( str ![ [ r#"
890890Downloading the source code of 0xA3E217869460bEf59A1CfD0637e2875F9331e823 from Etherscan...
891891Initializing [..]...
892- Installing forge-std in [..] (url: Some(" https://github.com/foundry-rs/forge-std") , tag: None)
892+ Installing forge-std in [..] (url: https://github.com/foundry-rs/forge-std, tag: None)
893893 Installed forge-std[..]
894894 Initialized forge project
895895Collecting the creation information of 0xA3E217869460bEf59A1CfD0637e2875F9331e823 from Etherscan...
0 commit comments