Fixes #1273. Typo fixed
diff --git a/LanguageFeatures/Super-parameters/type_inference_A05_t02.dart b/LanguageFeatures/Super-parameters/type_inference_A05_t02.dart
index 00c3afd..0c6d923 100644
--- a/LanguageFeatures/Super-parameters/type_inference_A05_t02.dart
+++ b/LanguageFeatures/Super-parameters/type_inference_A05_t02.dart
@@ -45,6 +45,6 @@
   Expect.equals(42, c3.s2);
 
   C c4 = C(0, s1: 42, s2: 0);
-  Expect.equals(42, c3.s1);
-  Expect.equals(0, c3.s2);
+  Expect.equals(42, c4.s1);
+  Expect.equals(0, c4.s2);
 }