| Index: tests/lib/mirrors/class_mirror_type_variables_test.dart
|
| diff --git a/tests/lib/mirrors/class_mirror_type_variables_test.dart b/tests/lib/mirrors/class_mirror_type_variables_test.dart
|
| index 9694ee4f10dbb77d8104a931297a7aa85ee3c9ac..51da82ec6618fa024d118660a0182c4322f57baf 100644
|
| --- a/tests/lib/mirrors/class_mirror_type_variables_test.dart
|
| +++ b/tests/lib/mirrors/class_mirror_type_variables_test.dart
|
| @@ -66,16 +66,16 @@ void testBAndC() {
|
|
|
| Expect.equals(b, bZ.owner);
|
| Expect.equals(c, cZ.owner);
|
| - Expect.equals(b, bZBoundTypeVariable.owner); /// 01: ok
|
| - Expect.equals(b, cZBoundTypeVariable.owner); /// 01: ok
|
| + Expect.equals(b, bZBoundTypeVariable.owner);
|
| + Expect.equals(b, cZBoundTypeVariable.owner);
|
| Expect.equals(b, bZBoundTypeArgument.owner);
|
| Expect.equals(c, cZBoundTypeArgument.owner);
|
|
|
| Expect.notEquals(bZ, cZ);
|
| Expect.equals(bZ, bZBoundTypeArgument);
|
| Expect.equals(cZ, cZBoundTypeArgument);
|
| - Expect.equals(bZ, bZBoundTypeVariable); /// 01: ok
|
| - Expect.equals(bZ, cZBoundTypeVariable); /// 01: ok
|
| + Expect.equals(bZ, bZBoundTypeVariable);
|
| + Expect.equals(bZ, cZBoundTypeVariable);
|
| }
|
|
|
| testD() {
|
|
|