| Index: tests/language_2/function_type/function_type10_test.dart
|
| diff --git a/tests/language_2/function_type/function_type10_test.dart b/tests/language_2/function_type/function_type10_test.dart
|
| index 692f44ae7a67ecb64c5f022b2ad17350c519bd5c..6d13947c2d8f42ab849fe301bbbe462793c02f23 100644
|
| --- a/tests/language_2/function_type/function_type10_test.dart
|
| +++ b/tests/language_2/function_type/function_type10_test.dart
|
| @@ -244,10 +244,10 @@ class U10<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>);
|
| }
|
| }
|
|
|
|
|