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

Unified Diff: runtime/observatory/tests/service/vm_test.dart

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. Created 3 years, 9 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: runtime/observatory/tests/service/vm_test.dart
diff --git a/runtime/observatory/tests/service/vm_test.dart b/runtime/observatory/tests/service/vm_test.dart
index eedf6ae53a63ee46e88791d0351142fbaaa1e00f..f39465e0a2ba661389b72512be3df7cdc46471e4 100644
--- a/runtime/observatory/tests/service/vm_test.dart
+++ b/runtime/observatory/tests/service/vm_test.dart
@@ -8,14 +8,11 @@ import 'package:unittest/unittest.dart';
import 'test_helper.dart';
var tests = [
-
-(Isolate isolate) {
- VM vm = isolate.owner;
- expect(vm.targetCPU, isNotNull);
- expect(vm.architectureBits == 32 ||
- vm.architectureBits == 64, isTrue);
-},
-
+ (Isolate isolate) {
+ VM vm = isolate.owner;
+ expect(vm.targetCPU, isNotNull);
+ expect(vm.architectureBits == 32 || vm.architectureBits == 64, isTrue);
+ },
];
main(args) => runIsolateTests(args, tests);

Powered by Google App Engine
This is Rietveld 408576698