Index: tests/lib/mirrors/method_mirror_name_test.dart |
diff --git a/tests/lib/mirrors/method_mirror_name_test.dart b/tests/lib/mirrors/method_mirror_name_test.dart |
index 84e22f86927252ffc453d75abb38b6a5ec9294b7..e796f015de3ae5ce13709d81bc9352642ef8fb47 100644 |
--- a/tests/lib/mirrors/method_mirror_name_test.dart |
+++ b/tests/lib/mirrors/method_mirror_name_test.dart |
@@ -15,6 +15,6 @@ doNothing42() {} |
main() { |
// Regression test for http://www.dartbug.com/6335 |
var closureMirror = reflect(doNothing42); |
- Expect.equals(stringifySymbol(closureMirror.function.simpleName), |
- "s(doNothing42)"); |
+ Expect.equals( |
+ stringifySymbol(closureMirror.function.simpleName), "s(doNothing42)"); |
} |