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 77c457b commit d329344Copy full SHA for d329344
tests/lint_message_convention.rs
@@ -60,6 +60,11 @@ impl Message {
60
61
#[test]
62
fn lint_message_convention() {
63
+ // disable the test inside the rustc test suite
64
+ if option_env!("RUSTC_TEST_SUITE").is_some() {
65
+ return;
66
+ }
67
+
68
// make sure that lint messages:
69
// * are not capitalized
70
// * don't have puncuation at the end of the last sentence
0 commit comments