Fixes #1210. Typo fixed
diff --git a/LanguageFeatures/Constructor-tear-offs/equality_A03_t05.dart b/LanguageFeatures/Constructor-tear-offs/equality_A03_t05.dart
index 1558aa8..64bc316 100644
--- a/LanguageFeatures/Constructor-tear-offs/equality_A03_t05.dart
+++ b/LanguageFeatures/Constructor-tear-offs/equality_A03_t05.dart
@@ -27,7 +27,7 @@
     var f2 = localFunction2<X>;
 
     Expect.equals(f1_1 == f1_2, f1_3 == f1_4);
-    Expect.equals(f1_1 == f1_3, f1_3 == f1_5);
+    Expect.equals(f1_1 == f1_2, f1_3 == f1_5);
     Expect.notEquals(f1_3, f2);
     Expect.notEquals(f1_4, f2);
     Expect.notEquals(f1_5, f2);