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

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

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: 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 f39465e0a2ba661389b72512be3df7cdc46471e4..eedf6ae53a63ee46e88791d0351142fbaaa1e00f 100644
--- a/runtime/observatory/tests/service/vm_test.dart
+++ b/runtime/observatory/tests/service/vm_test.dart
@@ -8,11 +8,14 @@ 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