about summary refs log tree commit diff
path: root/tests/ui/instrument-coverage/mcdc-condition-limit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/instrument-coverage/mcdc-condition-limit.rs')
-rw-r--r--tests/ui/instrument-coverage/mcdc-condition-limit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/instrument-coverage/mcdc-condition-limit.rs b/tests/ui/instrument-coverage/mcdc-condition-limit.rs
index 64c5f8e9b77..de3770b5709 100644
--- a/tests/ui/instrument-coverage/mcdc-condition-limit.rs
+++ b/tests/ui/instrument-coverage/mcdc-condition-limit.rs
@@ -26,7 +26,7 @@ fn main() {
 fn main() {
     // 7 conditions is too many, so issue a diagnostic.
     let [a, b, c, d, e, f, g] = <[bool; 7]>::default();
-    if a && b && c && d && e && f && g { //[bad]~ WARNING Conditions number of the decision
+    if a && b && c && d && e && f && g { //[bad]~ WARNING Number of conditions in decision
         core::hint::black_box("hello");
     }
 }