File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,11 @@ fn run_command(cmd: Command) -> anyhow::Result<()> {
164
164
|| line. contains ( "error: cyclic package dependency: package " )
165
165
{
166
166
broken_deps = true ;
167
- } else if line. contains ( "error: failed to parse lock file at" ) {
167
+ } else if line. contains ( "error: failed to parse lock file at" )
168
+ || line. contains (
169
+ "error: Attempting to resolve a dependency with more than one crate with links=" ,
170
+ )
171
+ {
168
172
broken_lockfile = true ;
169
173
}
170
174
} ;
Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ test_prepare_error_stderr!(
330
330
"error: invalid type: map, expected a string"
331
331
) ;
332
332
333
- test_prepare_uncategorized_err ! (
333
+ test_prepare_error_stderr ! (
334
334
test_invalid_cargotoml_conflicting_links,
335
335
"invalid-cargotoml-conflicting-links" ,
336
336
InvalidCargoLock ,
You can’t perform that action at this time.
0 commit comments