| Index: tests/language_2/function_type/function_type12_test.dart
|
| diff --git a/tests/language_2/function_type/function_type12_test.dart b/tests/language_2/function_type/function_type12_test.dart
|
| index 2973ab956749064fecaec6ff4a2f0953f14b5f65..d5d18f23f2a87b0b0d43b19e5ce0b8ff5809ed75 100644
|
| --- a/tests/language_2/function_type/function_type12_test.dart
|
| +++ b/tests/language_2/function_type/function_type12_test.dart
|
| @@ -244,10 +244,10 @@ class U12<T> {
|
| });
|
| }
|
| if (tIsInt || tIsBool) {
|
| - Expect.equals(true, m2 is F2<int>);
|
| - Expect.equals(true, m2 is F2<bool>);
|
| - Expect.equals(true, confuse(m2) is F2<int>);
|
| - Expect.equals(true, confuse(m2) is F2<bool>);
|
| + Expect.equals(tIsInt, m2 is F2<int>);
|
| + Expect.equals(tIsBool, m2 is F2<bool>);
|
| + Expect.equals(tIsInt, confuse(m2) is F2<int>);
|
| + Expect.equals(tIsBool, confuse(m2) is F2<bool>);
|
| }
|
| }
|
|
|
| @@ -317,10 +317,10 @@ class U12<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>);
|
| }
|
| }
|
|
|
|
|