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

Unified Diff: pkg/analysis_server/test/analysis/update_content_test.dart

Issue 2975253002: Format analyzer, analysis_server, analyzer_plugin, front_end and kernel with the latest dartfmt. (Closed)
Patch Set: Created 3 years, 5 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/analysis/update_content_test.dart
diff --git a/pkg/analysis_server/test/analysis/update_content_test.dart b/pkg/analysis_server/test/analysis/update_content_test.dart
index ea7db860e9b36d0f072d21bd6305451eeb4d6196..8bd671c86b95b2091bec51d598c1c260ccbdd73a 100644
--- a/pkg/analysis_server/test/analysis/update_content_test.dart
+++ b/pkg/analysis_server/test/analysis/update_content_test.dart
@@ -69,23 +69,17 @@ class UpdateContentTest extends AbstractAnalysisTest {
test_multiple_contexts() async {
String fooPath = '/project1/foo.dart';
- resourceProvider.newFile(
- fooPath,
- '''
+ resourceProvider.newFile(fooPath, '''
library foo;
import '../project2/baz.dart';
main() { f(); }''');
String barPath = '/project2/bar.dart';
- resourceProvider.newFile(
- barPath,
- '''
+ resourceProvider.newFile(barPath, '''
library bar;
import 'baz.dart';
main() { f(); }''');
String bazPath = '/project2/baz.dart';
- resourceProvider.newFile(
- bazPath,
- '''
+ resourceProvider.newFile(bazPath, '''
library baz;
f(int i) {}
''');
« no previous file with comments | « pkg/analysis_server/test/analysis/set_priority_files_test.dart ('k') | pkg/analysis_server/test/analysis_server_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698