Fixes #1222. Change the test to expect correct behaviour
diff --git a/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart b/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart
index ec97d00..325b08e 100644
--- a/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart
+++ b/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart
@@ -32,7 +32,7 @@
   const v6 = (MyList.filled)<int>;
 
   const CheckIdentical(v4, v5);
-  const CheckIdentical(v4, v6);
+  const CheckNotIdentical(v4, v6);
 
   Expect.notEquals(v1, v4);
 }