File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,9 @@ fn run_command(cmd: Command) -> anyhow::Result<()> {
154
154
|| line. contains ( "no matching package named" )
155
155
{
156
156
missing_deps = true ;
157
- } else if line. contains ( "failed to parse manifest at" ) {
157
+ } else if line. contains ( "failed to parse manifest at" )
158
+ || line. contains ( "error: invalid table header" )
159
+ {
158
160
broken_deps = true ;
159
161
}
160
162
} ;
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ test_prepare_error_stderr!(
268
268
"failed to parse the version requirement `0.11\t ` for dependency `parking_lot`"
269
269
) ;
270
270
271
- test_prepare_unknown_err ! (
271
+ test_prepare_error_stderr ! (
272
272
test_invalid_cargotoml_syntax_deps,
273
273
"invalid-cargotoml-syntax-deps" ,
274
274
BrokenDependencies ,
You can’t perform that action at this time.
0 commit comments