| Index: tests/language/duplicate_interface_test.dart
|
| diff --git a/tests/language/duplicate_interface_test.dart b/tests/language/duplicate_interface_test.dart
|
| index 887cd309b6a8b2ec78648663e48e79976bf6627a..d957be9b1f29007798a614cef775241bee43f380 100644
|
| --- a/tests/language/duplicate_interface_test.dart
|
| +++ b/tests/language/duplicate_interface_test.dart
|
| @@ -8,14 +8,12 @@ library duplicateInterfaceTest;
|
| import 'package:expect/expect.dart';
|
| import "duplicate_interface_lib.dart" as alib;
|
|
|
| -class InterfB { }
|
| +class InterfB {}
|
|
|
| // Ok since InterfB and alib.InterfB are not the same interface
|
| -class Foo implements InterfB , alib.InterfB { }
|
| -
|
| +class Foo implements InterfB, alib.InterfB {}
|
|
|
| main() {
|
| Expect.isTrue(new Foo() is InterfB);
|
| Expect.isTrue(new Foo() is alib.InterfB);
|
| }
|
| -
|
|
|