| Index: tests/compiler/dart2js/reexport_handled_test.dart
|
| diff --git a/tests/compiler/dart2js/reexport_handled_test.dart b/tests/compiler/dart2js/reexport_handled_test.dart
|
| index 401afb1b1e970ec7432f37e7c82f15f2ae2c8cf6..ff81d14442cc1ac020fc999b0d0c7b562dd7e0e9 100644
|
| --- a/tests/compiler/dart2js/reexport_handled_test.dart
|
| +++ b/tests/compiler/dart2js/reexport_handled_test.dart
|
| @@ -48,7 +48,7 @@ void main() {
|
|
|
| Element findInExports(LibraryElement library, String name) {
|
| for (var export in library.exports) {
|
| - if (export.name.slowToString() == name) {
|
| + if (export.name == name) {
|
| return export;
|
| }
|
| }
|
|
|