| Index: test_reflectable/test/reflected_type_test.dart
|
| diff --git a/test_reflectable/test/reflected_type_test.dart b/test_reflectable/test/reflected_type_test.dart
|
| index 7f481f0aa768ecc1d3e0fa6fc12c1ce80dc42c3c..05c88a31e770a453c137c8accd7c4178189cd3a7 100644
|
| --- a/test_reflectable/test/reflected_type_test.dart
|
| +++ b/test_reflectable/test/reflected_type_test.dart
|
| @@ -138,7 +138,7 @@ main() {
|
| expect(namedArgumentsParameter2.reflectedType, String);
|
| });
|
|
|
| - test('parameter list properties, getters and setters', () {
|
| + test('parameter reflected types, static getters and setters', () {
|
| expect(staticGetsetMirror.parameters.length, 0);
|
| expect(staticGetsetEqualsMirror.parameters.length, 1);
|
| ParameterMirror staticGetsetEqualsParameter0 =
|
| @@ -146,7 +146,7 @@ main() {
|
| expect(staticGetsetEqualsParameter0.reflectedType, List);
|
| });
|
|
|
| - test("method return types", () {
|
| + test('reflected return types, methods', () {
|
| expect(arg0Mirror.reflectedReturnType, int);
|
| expect(arg1Mirror.reflectedReturnType, int);
|
| expect(arg2to4Mirror.reflectedReturnType, int);
|
|
|