| Index: tests/language_2/function_type/function_type28_test.dart
|
| diff --git a/tests/language_2/function_type/function_type28_test.dart b/tests/language_2/function_type/function_type28_test.dart
|
| index e1631ca3072cd589d3fa7964b2a0ad27207ce2ce..eb9f0270c55d36852deb457dba3dc8b28c403afc 100644
|
| --- a/tests/language_2/function_type/function_type28_test.dart
|
| +++ b/tests/language_2/function_type/function_type28_test.dart
|
| @@ -293,10 +293,10 @@ class U28<T> {
|
| });
|
| }
|
| if (tIsInt || tIsBool) {
|
| - Expect.equals(tIsInt, m3 is F3<int>);
|
| - Expect.equals(tIsBool, m3 is F3<bool>);
|
| - Expect.equals(tIsInt, confuse(m3) is F3<int>);
|
| - Expect.equals(tIsBool, confuse(m3) is F3<bool>);
|
| + Expect.equals(true, m3 is F3<int>);
|
| + Expect.equals(true, m3 is F3<bool>);
|
| + Expect.equals(true, confuse(m3) is F3<int>);
|
| + Expect.equals(true, confuse(m3) is F3<bool>);
|
| }
|
| }
|
|
|
|
|