Skip to content

Commit 3fc52d5

Browse files
committed
test(toml): Make test names scale to more scenarios
1 parent f1caef1 commit 3fc52d5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

tests/testsuite/build.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2170,7 +2170,7 @@ Caused by:
21702170
}
21712171

21722172
#[cargo_test]
2173-
fn dev_dependencies_conflicting_warning() {
2173+
fn dev_dependencies2_conflict() {
21742174
let p = project()
21752175
.file(
21762176
"Cargo.toml",
@@ -2207,7 +2207,7 @@ fn dev_dependencies_conflicting_warning() {
22072207
}
22082208

22092209
#[cargo_test]
2210-
fn build_dependencies_conflicting_warning() {
2210+
fn build_dependencies2_conflict() {
22112211
let p = project()
22122212
.file(
22132213
"Cargo.toml",
@@ -2244,7 +2244,7 @@ fn build_dependencies_conflicting_warning() {
22442244
}
22452245

22462246
#[cargo_test]
2247-
fn lib_crate_types_conflicting_warning() {
2247+
fn lib_crate_type2_conflict() {
22482248
let p = project()
22492249
.file(
22502250
"Cargo.toml",
@@ -2272,7 +2272,7 @@ fn lib_crate_types_conflicting_warning() {
22722272
}
22732273

22742274
#[cargo_test]
2275-
fn examples_crate_types_conflicting_warning() {
2275+
fn examples_crate_type2_conflict() {
22762276
let p = project()
22772277
.file(
22782278
"Cargo.toml",
@@ -3507,7 +3507,7 @@ fn cargo_platform_specific_dependency() {
35073507
}
35083508

35093509
#[cargo_test]
3510-
fn cargo_platform_specific_dependency_build_dependencies_conflicting_warning() {
3510+
fn cargo_platform_build_dependencies2_conflict() {
35113511
let host = rustc_host();
35123512
let p = project()
35133513
.file(
@@ -3549,7 +3549,7 @@ fn cargo_platform_specific_dependency_build_dependencies_conflicting_warning() {
35493549
}
35503550

35513551
#[cargo_test]
3552-
fn cargo_platform_specific_dependency_dev_dependencies_conflicting_warning() {
3552+
fn cargo_platform_dev_dependencies2_conflict() {
35533553
let host = rustc_host();
35543554
let p = project()
35553555
.file(

tests/testsuite/features.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2206,7 +2206,7 @@ fn invalid_feature_name_slash_error() {
22062206
}
22072207

22082208
#[cargo_test]
2209-
fn default_features_conflicting_warning() {
2209+
fn default_features2_conflict() {
22102210
let p = project()
22112211
.file(
22122212
"Cargo.toml",

tests/testsuite/proc_macro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ fn proc_macro_crate_type_warning() {
346346
}
347347

348348
#[cargo_test]
349-
fn proc_macro_conflicting_warning() {
349+
fn proc_macro2_conflict() {
350350
let foo = project()
351351
.file(
352352
"Cargo.toml",

0 commit comments

Comments
 (0)