| Index: tests/language_2/function_type/function_type44_test.dart
|
| diff --git a/tests/language_2/function_type/function_type44_test.dart b/tests/language_2/function_type/function_type44_test.dart
|
| index 868ce4f5a95e2db6092313d51b74785b9022101e..57937310e71e58eb661a3c9d7ea4cb2aa8a458ba 100644
|
| --- a/tests/language_2/function_type/function_type44_test.dart
|
| +++ b/tests/language_2/function_type/function_type44_test.dart
|
| @@ -197,10 +197,10 @@ class U44<T> {
|
| });
|
| }
|
| if (tIsInt || tIsBool) {
|
| - Expect.equals(true, m0 is F0<int>);
|
| - Expect.equals(true, m0 is F0<bool>);
|
| - Expect.equals(true, confuse(m0) is F0<int>);
|
| - Expect.equals(true, confuse(m0) is F0<bool>);
|
| + Expect.equals(tIsInt, m0 is F0<int>);
|
| + Expect.equals(tIsBool, m0 is F0<bool>);
|
| + Expect.equals(tIsInt, confuse(m0) is F0<int>);
|
| + Expect.equals(tIsBool, confuse(m0) is F0<bool>);
|
| }
|
| }
|
|
|
| @@ -343,10 +343,10 @@ class U44<T> {
|
| });
|
| }
|
| if (tIsInt || tIsBool) {
|
| - Expect.equals(true, m4 is F4<int>);
|
| - Expect.equals(true, m4 is F4<bool>);
|
| - Expect.equals(true, confuse(m4) is F4<int>);
|
| - Expect.equals(true, confuse(m4) is F4<bool>);
|
| + Expect.equals(tIsInt, m4 is F4<int>);
|
| + Expect.equals(tIsBool, m4 is F4<bool>);
|
| + Expect.equals(tIsInt, confuse(m4) is F4<int>);
|
| + Expect.equals(tIsBool, confuse(m4) is F4<bool>);
|
| }
|
| }
|
|
|
|
|