| Index: pkg/analyzer/test/src/summary/summary_common.dart
|
| diff --git a/pkg/analyzer/test/src/summary/summary_common.dart b/pkg/analyzer/test/src/summary/summary_common.dart
|
| index 419ee31374db32df20d6d45e8804390e831cbbb3..a5756e7f7c548527773cc8926cd3c24a052ad68a 100644
|
| --- a/pkg/analyzer/test/src/summary/summary_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/summary_common.dart
|
| @@ -2561,9 +2561,8 @@ enum E { v }''';
|
| }
|
|
|
| test_executable_operator_equal() {
|
| - UnlinkedExecutable executable =
|
| - serializeClassText('class C { bool operator==(C other) => false; }')
|
| - .executables[0];
|
| + UnlinkedExecutable executable = serializeClassText(
|
| + 'class C { bool operator==(Object other) => false; }').executables[0];
|
| expect(executable.name, '==');
|
| }
|
|
|
|
|