@@ -261,42 +261,42 @@ test_prepare_error_stderr!(
261
261
"error: no matching package named `macro` found"
262
262
) ;
263
263
264
- test_prepare_unknown_err ! (
264
+ test_prepare_uncategorized_err ! (
265
265
test_invalid_cargotoml_content_deps,
266
266
"invalid-cargotoml-content-deps" ,
267
267
BrokenDependencies ,
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_uncategorized_err ! (
272
272
test_invalid_cargotoml_syntax_deps,
273
273
"invalid-cargotoml-syntax-deps" ,
274
274
BrokenDependencies ,
275
275
"error: invalid table header"
276
276
) ;
277
277
278
- test_prepare_unknown_err ! (
278
+ test_prepare_uncategorized_err ! (
279
279
test_invalid_lockfile_syntax,
280
280
"invalid-lockfile-syntax" ,
281
281
InvalidCargoLock ,
282
282
"error: failed to parse lock file at"
283
283
) ;
284
284
285
- test_prepare_unknown_err ! (
285
+ test_prepare_uncategorized_err ! (
286
286
test_missing_deps_typo,
287
287
"missing-deps-typo" ,
288
288
MissingDependencies ,
289
289
"error: no matching package found"
290
290
) ;
291
291
292
- test_prepare_unknown_err ! (
292
+ test_prepare_uncategorized_err ! (
293
293
test_invalid_cargotoml_cyclic_feature,
294
294
"invalid-cargotoml-cyclic-feature" ,
295
295
BrokenDependencies ,
296
296
"error: cyclic feature dependency: feature"
297
297
) ;
298
298
299
- test_prepare_unknown_err ! (
299
+ test_prepare_uncategorized_err ! (
300
300
test_invalid_cargotoml_cyclic_package,
301
301
"invalid-cargotoml-cyclic-package" ,
302
302
BrokenDependencies ,
@@ -309,42 +309,42 @@ test_prepare_error!(
309
309
InvalidCargoTomlSyntax
310
310
) ;
311
311
312
- test_prepare_unknown_err ! (
312
+ test_prepare_uncategorized_err ! (
313
313
test_invalid_cargotoml_missing_override,
314
314
"invalid-cargotoml-missing-override" ,
315
315
MissingDependencies ,
316
316
"no matching package for override `https://github.com/rust-lang/crates.io-index#[email protected] ` found"
317
317
) ;
318
318
319
- test_prepare_unknown_err ! (
319
+ test_prepare_uncategorized_err ! (
320
320
test_missing_deps_registry_version,
321
321
"missing-deps-registry-version" ,
322
322
MissingDependencies ,
323
323
"error: failed to select a version for the requirement `empty-library = \" =0.5.0\" `"
324
324
) ;
325
325
326
- test_prepare_unknown_err ! (
326
+ test_prepare_uncategorized_err ! (
327
327
test_invalid_cargotoml_content_type_in_deps,
328
328
"invalid-cargotoml-content-type-in-deps" ,
329
329
BrokenDependencies ,
330
330
"error: invalid type: map, expected a string"
331
331
) ;
332
332
333
- test_prepare_unknown_err ! (
333
+ test_prepare_uncategorized_err ! (
334
334
test_invalid_cargotoml_conflicting_links,
335
335
"invalid-cargotoml-conflicting-links" ,
336
336
InvalidCargoLock ,
337
337
"error: Attempting to resolve a dependency with more than one crate with links=ring-asm"
338
338
) ;
339
339
340
- test_prepare_unknown_err ! (
340
+ test_prepare_uncategorized_err ! (
341
341
test_lockfile_collision,
342
342
"lockfile-collision" ,
343
343
BrokenDependencies ,
344
344
"error: package collision in the lockfile: packages lockfile-collision v0.1.0 "
345
345
) ;
346
346
347
- test_prepare_unknown_err ! (
347
+ test_prepare_uncategorized_err ! (
348
348
test_invalid_cargotoml_missing_patch,
349
349
"invalid-cargotoml-missing-patch" ,
350
350
MissingDependencies ,
0 commit comments