Skip to content

Commit 6e43096

Browse files
committed
bless a flaky (?) test
1 parent cabd48f commit 6e43096

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/ui/cfg/suggest-alternative-name-on-target.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ LL | #[cfg(target_abi = "windows")]
6262
| ^^^^^^^^^^^^^^^^^^^^^^
6363
|
6464
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
65-
help: `windows` is an expected value for `target_os`
65+
help: `windows` is an expected value for `target_family`
6666
|
6767
LL - #[cfg(target_abi = "windows")]
68-
LL + #[cfg(target_os = "windows")]
68+
LL + #[cfg(target_family = "windows")]
6969
|
70-
help: `windows` is an expected value for `target_family`
70+
help: `windows` is an expected value for `target_os`
7171
|
7272
LL - #[cfg(target_abi = "windows")]
73-
LL + #[cfg(target_family = "windows")]
73+
LL + #[cfg(target_os = "windows")]
7474
|
7575

7676
error: aborting due to 5 previous errors

0 commit comments

Comments
 (0)