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

Unified Diff: pkg/analysis_server/test/edit/format_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
« no previous file with comments | « pkg/analysis_server/test/edit/fixes_test.dart ('k') | pkg/analysis_server/test/edit/refactoring_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/edit/format_test.dart
diff --git a/pkg/analysis_server/test/edit/format_test.dart b/pkg/analysis_server/test/edit/format_test.dart
index b61d378694834e9f168b8c87abac18b9f1d84f7b..f45990056ba030fcfd16c71fb76f0ec7df7b1069 100644
--- a/pkg/analysis_server/test/edit/format_test.dart
+++ b/pkg/analysis_server/test/edit/format_test.dart
@@ -13,13 +13,11 @@ import 'package:unittest/unittest.dart' hide ERROR;
import '../analysis_abstract.dart';
import '../reflective_tests.dart';
-
main() {
groupSep = ' | ';
runReflectiveTests(FormatTest);
}
-
@reflectiveTest
class FormatTest extends AbstractAnalysisTest {
@override
@@ -34,7 +32,6 @@ class FormatTest extends AbstractAnalysisTest {
main() { int x = 3; }
''');
return waitForTasksFinished().then((_) {
-
EditFormatResult formatResult = _formatAt(0, 3);
expect(formatResult.edits, isNotNull);
@@ -67,11 +64,8 @@ main() {
EditFormatResult _formatAt(int selectionOffset, int selectionLength) {
Request request = new EditFormatParams(
- testFile,
- selectionOffset,
- selectionLength).toRequest('0');
+ testFile, selectionOffset, selectionLength).toRequest('0');
Response response = handleSuccessfulRequest(request);
return new EditFormatResult.fromResponse(response);
}
-
}
« no previous file with comments | « pkg/analysis_server/test/edit/fixes_test.dart ('k') | pkg/analysis_server/test/edit/refactoring_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698