Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(633)

Unified Diff: tests/lib_strong/mirrors/private_class_field_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/lib_strong/mirrors/private_class_field_test.dart
diff --git a/tests/lib_strong/mirrors/private_class_field_test.dart b/tests/lib_strong/mirrors/private_class_field_test.dart
index cedf9032c5a9ffe2d4a0f4f8a74835eaa00e8667..fe288550a2600776ee95c3abee37870036b6bdc4 100644
--- a/tests/lib_strong/mirrors/private_class_field_test.dart
+++ b/tests/lib_strong/mirrors/private_class_field_test.dart
@@ -14,7 +14,7 @@ void main() {
var classMirror = reflectClass(C);
// The symbol is private w/r/t the wrong library.
Expect.throws(() => classMirror.getField(#_privateField),
- (e) => e is NoSuchMethodError);
+ (e) => e is NoSuchMethodError);
Expect.equals(42, classMirror.getField(privateFieldSymbolInOther).reflectee);
}

Powered by Google App Engine
This is Rietveld 408576698