Fixes #1300: Corrected tests according to the recent changes in CFE.
diff --git a/Language/Statements/Switch/equal_operator_t01.dart b/Language/Statements/Switch/equal_operator_t01.dart
index c5c462e..db36663 100644
--- a/Language/Statements/Switch/equal_operator_t01.dart
+++ b/Language/Statements/Switch/equal_operator_t01.dart
@@ -11,8 +11,6 @@
 /// @description Checks that it is a compile-time error if class C implements
 /// operator ==.
 /// @author kaigorodov
-/// @reviewer rodionov
-
 
 class C {
   final int x;
@@ -34,9 +32,13 @@
 //^
 // [analyzer] unspecified
     case c1:
+//       ^
+// [cfe] unspecified
       y = 1;
       break;
     case c2:
+//       ^
+// [cfe] unspecified
       y = 2;
       break;
   }
diff --git a/Language/Statements/Switch/equal_operator_t02.dart b/Language/Statements/Switch/equal_operator_t02.dart
index 6547c40..a111841 100644
--- a/Language/Statements/Switch/equal_operator_t02.dart
+++ b/Language/Statements/Switch/equal_operator_t02.dart
@@ -12,16 +12,16 @@
 /// is a compile-time constant of type double, since double is neither String
 /// nor int and implements ==.
 /// @author msyabro
-/// @reviewer rodionov
 /// @note renamed from 09_Switch_A02_t04
 
-
 main() {
   try {
     switch (1.0) {
 //  ^
 // [analyzer] unspecified
       case 0.5:
+//         ^
+// [cfe] unspecified
     }
   } catch (e) {}
 }