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

Unified Diff: pkg/analysis_server/test/analysis/reanalyze_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/analysis/reanalyze_test.dart
diff --git a/pkg/analysis_server/test/analysis/reanalyze_test.dart b/pkg/analysis_server/test/analysis/reanalyze_test.dart
index c2c60af0028f0a47106e15ab4efeb2deb4d62c36..0041e8240897a001caaaaff8a53488192ab1f708 100644
--- a/pkg/analysis_server/test/analysis/reanalyze_test.dart
+++ b/pkg/analysis_server/test/analysis/reanalyze_test.dart
@@ -12,13 +12,11 @@ import 'package:unittest/unittest.dart';
import '../analysis_abstract.dart';
import '../reflective_tests.dart';
-
main() {
groupSep = ' | ';
runReflectiveTests(ReanalyzeTest);
}
-
@reflectiveTest
class ReanalyzeTest extends AbstractAnalysisTest {
Map<String, List<AnalysisError>> filesErrors = {};
@@ -51,9 +49,7 @@ class ReanalyzeTest extends AbstractAnalysisTest {
resourceProvider.newFile(testFile, 'main() {}');
return waitForTasksFinished().then((_) {
// Update the content with an overlay that contains a syntax error.
- server.updateContent('1', {
- testFile: new AddContentOverlay('main() {')
- });
+ server.updateContent('1', {testFile: new AddContentOverlay('main() {')});
return waitForTasksFinished();
}).then((_) {
// Verify that the syntax error was detected.

Powered by Google App Engine
This is Rietveld 408576698