| Index: tests/compiler/dart2js/union_type_test.dart
|
| diff --git a/tests/compiler/dart2js/union_type_test.dart b/tests/compiler/dart2js/union_type_test.dart
|
| index 2b48e046045d760deddecd9f2999134f19d4339f..7cc13bac86ce43ee8a2e338d040557f727e4adc1 100644
|
| --- a/tests/compiler/dart2js/union_type_test.dart
|
| +++ b/tests/compiler/dart2js/union_type_test.dart
|
| @@ -15,9 +15,9 @@ main() {
|
| compiler.stringClass.ensureResolved(compiler);
|
|
|
| FlatTypeMask mask1 =
|
| - new FlatTypeMask.exact(new InterfaceType(compiler.intClass));
|
| + new FlatTypeMask.exact(compiler.intClass);
|
| FlatTypeMask mask2 =
|
| - new FlatTypeMask.exact(new InterfaceType(compiler.stringClass));
|
| + new FlatTypeMask.exact(compiler.stringClass);
|
| UnionTypeMask union1 = mask1.nonNullable().union(mask2, compiler);
|
| UnionTypeMask union2 = mask2.nonNullable().union(mask1, compiler);
|
| Expect.equals(union1, union2);
|
|
|