Skip to content

Commit a1d80c6

Browse files
committed
Fix import resolution getting stuck on nightly
See rust-lang/rust#53481 for details
1 parent e87c06e commit a1d80c6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

derive_builder/tests/builder_name.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn panic_if_uninitialized() {
1919
}
2020

2121
#[test]
22-
fn builder() {
22+
fn builder_test() {
2323
let x: Lorem = MyBuilder::default()
2424
.ipsum("lorem")
2525
.dolor(Some("dolor"))

derive_builder/tests/custom_default.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ mod field_level {
5151
}
5252

5353
#[test]
54-
fn builder() {
54+
fn builder_test() {
5555
let x = LoremBuilder::default()
5656
.required("ipsum".to_string())
5757
.explicit_default("lorem".to_string())

derive_builder/tests/lifetime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn panic_if_uninitialized() {
1515
}
1616

1717
#[test]
18-
fn builder() {
18+
fn builder_test() {
1919
let x = LoremBuilder::default().ipsum("ipsum").build().unwrap();
2020

2121
assert_eq!(x, Lorem { ipsum: "ipsum" });

0 commit comments

Comments
 (0)