Fix small glitch in tests
diff --git a/compiler/testData/diagnostics/tests/when/guard/suggestGuardExpressions.kt b/compiler/testData/diagnostics/tests/when/guard/suggestGuardExpressions.kt
index 6e54bb1..6a8c1be 100644
--- a/compiler/testData/diagnostics/tests/when/guard/suggestGuardExpressions.kt
+++ b/compiler/testData/diagnostics/tests/when/guard/suggestGuardExpressions.kt
@@ -37,7 +37,7 @@
 
 fun elseAndAnd(x: Boolean, boolExpr: Boolean) {
     when (x) {
-        <!ELSE_MISPLACED_IN_WHEN!>else<!> <!SYNTAX!>!>&& boolExpr<!> -> "hello"
+        <!ELSE_MISPLACED_IN_WHEN!>else<!> <!SYNTAX!>&& boolExpr<!> -> "hello"
         <!UNREACHABLE_CODE!>else -> "bye"<!>
     }
 }