| Index: pkg/unittest/test/matchers_unminified_test.dart
|
| diff --git a/pkg/unittest/test/matchers_unminified_test.dart b/pkg/unittest/test/matchers_unminified_test.dart
|
| index 8a1b005992e3f8a6ef9f2bcfdc1beea9f77c36c9..3d7c322a8e4b3551bc0e1111f8b6793e08a1494f 100644
|
| --- a/pkg/unittest/test/matchers_unminified_test.dart
|
| +++ b/pkg/unittest/test/matchers_unminified_test.dart
|
| @@ -51,8 +51,9 @@ void main() {
|
| });
|
|
|
| test('throwsNoSuchMethodError', () {
|
| - shouldPass(() { throw new NoSuchMethodError(null, '', null, null); },
|
| - throwsNoSuchMethodError);
|
| + shouldPass(() {
|
| + throw new NoSuchMethodError(null, const Symbol(''), null, null);
|
| + }, throwsNoSuchMethodError);
|
| shouldFail(() { throw new Exception(); },
|
| throwsNoSuchMethodError,
|
| matches(
|
|
|