File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ fn simple() {
88
99 p. cargo ( "locate-project" )
1010 . with_stdout_data ( str![ [ r#"
11- {"root":"[..] "}
11+ {"root":"[ROOT]/foo/Cargo.toml "}
1212
1313"# ] ] )
1414 . run ( ) ;
@@ -27,7 +27,7 @@ fn message_format() {
2727
2828 p. cargo ( "locate-project --message-format json" )
2929 . with_stdout_data ( str![ [ r#"
30- {"root":"[..] "}
30+ {"root":"[ROOT]/foo/Cargo.toml "}
3131
3232"# ] ] )
3333 . run ( ) ;
@@ -69,30 +69,30 @@ fn workspace() {
6969
7070 p. cargo ( "locate-project" )
7171 . with_stdout_data ( str![ [ r#"
72- {"root":"[..] "}
72+ {"root":"[ROOT]/foo/Cargo.toml "}
7373
7474"# ] ] )
7575 . run ( ) ;
7676
7777 p. cargo ( "locate-project" )
7878 . cwd ( "inner" )
7979 . with_stdout_data ( str![ [ r#"
80- {"root":"[..] "}
80+ {"root":"[ROOT]/foo/inner/Cargo.toml "}
8181
8282"# ] ] )
8383 . run ( ) ;
8484
8585 p. cargo ( "locate-project --workspace" )
8686 . with_stdout_data ( str![ [ r#"
87- {"root":"[..] "}
87+ {"root":"[ROOT]/foo/Cargo.toml "}
8888
8989"# ] ] )
9090 . run ( ) ;
9191
9292 p. cargo ( "locate-project --workspace" )
9393 . cwd ( "inner" )
9494 . with_stdout_data ( str![ [ r#"
95- {"root":"[..] "}
95+ {"root":"[ROOT]/foo/Cargo.toml "}
9696
9797"# ] ] )
9898 . run ( ) ;
You can’t perform that action at this time.
0 commit comments