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

Unified Diff: pkg/analysis_server/test/integration/analysis/overrides_test.dart

Issue 969113002: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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: pkg/analysis_server/test/integration/analysis/overrides_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/overrides_test.dart b/pkg/analysis_server/test/integration/analysis/overrides_test.dart
index 4c28d7f39a586732267f3070b9b7dca871bb828a..b5dfb6f5a83d03ba59b3ba58fd6fce42f23b15ba 100644
--- a/pkg/analysis_server/test/integration/analysis/overrides_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/overrides_test.dart
@@ -53,9 +53,7 @@ class Target extends Base implements Interface1, Interface2 {
''';
writeFile(pathname, text);
standardAnalysisSetup();
- sendAnalysisSetSubscriptions({
- AnalysisService.OVERRIDES: [pathname]
- });
+ sendAnalysisSetSubscriptions({AnalysisService.OVERRIDES: [pathname]});
List<Override> overrides;
onAnalysisOverrides.listen((AnalysisOverridesParams params) {
expect(params.file, equals(pathname));
@@ -101,8 +99,7 @@ class Target extends Base implements Interface1, Interface2 {
bool wasAdded = actualOverridesInterfaces.add(className);
expect(wasAdded, isTrue);
}
- expect(
- actualOverridesInterfaces,
+ expect(actualOverridesInterfaces,
equals(expectedOverridesInterfaces.toSet()));
} else {
expect(interfaceMembers, isNull);

Powered by Google App Engine
This is Rietveld 408576698