We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb6925 commit d522344Copy full SHA for d522344
tests/testsuite/features.rs
@@ -1755,10 +1755,11 @@ fn warn_if_default_features() {
1755
.build();
1756
1757
p.cargo("build")
1758
- .with_stderr("\
1759
-[WARNING] `default-features = [\"..\"]` was found in [features]. Did you mean to use `default = [\"..\"]`?
+ .with_stderr(
+ r#"
1760
+[WARNING] `default-features = [".."]` was found in [features]. Did you mean to use `default = [".."]`?
1761
[COMPILING] foo v0.0.1 ([CWD])
1762
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
-",
1763
+ "#.trim(),
1764
).run();
1765
}
0 commit comments