| Index: tests/language_2/function_type/function_type65_test.dart
|
| diff --git a/tests/language_2/function_type/function_type65_test.dart b/tests/language_2/function_type/function_type65_test.dart
|
| index 05f12f43734b2c2b058c27b820b6220d9be8aa77..e19752986cbd3b4bb031deefe6c9e6b6b5a944db 100644
|
| --- a/tests/language_2/function_type/function_type65_test.dart
|
| +++ b/tests/language_2/function_type/function_type65_test.dart
|
| @@ -218,10 +218,10 @@ class U65<T> {
|
| });
|
| }
|
| if (tIsInt || tIsBool) {
|
| - 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>);
|
| + 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>);
|
| }
|
| }
|
|
|
|
|