| Index: tests/language_2/function_type/function_type6_test.dart
|
| diff --git a/tests/language_2/function_type/function_type6_test.dart b/tests/language_2/function_type/function_type6_test.dart
|
| index 5ba38fbb5cbc05fc9471514493bd5a131bb352ae..8fe3d9708cf3dc7cb0867e6230318aa54a8b4972 100644
|
| --- a/tests/language_2/function_type/function_type6_test.dart
|
| +++ b/tests/language_2/function_type/function_type6_test.dart
|
| @@ -247,10 +247,10 @@ class U6<T> {
|
| });
|
| }
|
| if (tIsInt || tIsBool) {
|
| - Expect.equals(true, m1 is F1<int>);
|
| - Expect.equals(true, m1 is F1<bool>);
|
| - Expect.equals(true, confuse(m1) is F1<int>);
|
| - Expect.equals(true, confuse(m1) is F1<bool>);
|
| + Expect.equals(tIsInt, m1 is F1<int>);
|
| + Expect.equals(tIsBool, m1 is F1<bool>);
|
| + Expect.equals(tIsInt, confuse(m1) is F1<int>);
|
| + Expect.equals(tIsBool, confuse(m1) is F1<bool>);
|
| }
|
| }
|
|
|
|
|