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

Unified Diff: runtime/observatory/tests/service/evaluate_in_async_activation_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/evaluate_in_async_activation_test.dart
diff --git a/runtime/observatory/tests/service/evaluate_in_async_activation_test.dart b/runtime/observatory/tests/service/evaluate_in_async_activation_test.dart
index c114902abe2baa33624afe2c3c3c1241d68f9709..45eee68a6324503d24a6556b170a3246072b9bd3 100644
--- a/runtime/observatory/tests/service/evaluate_in_async_activation_test.dart
+++ b/runtime/observatory/tests/service/evaluate_in_async_activation_test.dart
@@ -19,32 +19,39 @@ testFunction() async {
}
var tests = [
- hasStoppedAtBreakpoint,
- (Isolate isolate) async {
- // Make sure we are in the right place.
- var stack = await isolate.getStack();
- var topFrame = 0;
- expect(stack.type, equals('Stack'));
- expect(await stack['frames'][topFrame].location.getLine(), 16);
-
- var result = await isolate.evalFrame(topFrame, "x");
- print(result);
- expect(result.valueAsString, equals("3"));
- },
- resumeIsolate,
- hasStoppedAtBreakpoint,
- (Isolate isolate) async {
- // Make sure we are in the right place.
- var stack = await isolate.getStack();
- var topFrame = 0;
- expect(stack.type, equals('Stack'));
- expect(await stack['frames'][topFrame].location.getLine(), 18);
-
- var result = await isolate.evalFrame(topFrame, "z");
- print(result);
- expect(result.valueAsString, equals("7"));
- },
- resumeIsolate,
+
+hasStoppedAtBreakpoint,
+
+(Isolate isolate) async {
+ // Make sure we are in the right place.
+ var stack = await isolate.getStack();
+ var topFrame = 0;
+ expect(stack.type, equals('Stack'));
+ expect(await stack['frames'][topFrame].location.getLine(), 16);
+
+ var result = await isolate.evalFrame(topFrame, "x");
+ print(result);
+ expect(result.valueAsString, equals("3"));
+},
+
+resumeIsolate,
+
+hasStoppedAtBreakpoint,
+
+(Isolate isolate) async {
+ // Make sure we are in the right place.
+ var stack = await isolate.getStack();
+ var topFrame = 0;
+ expect(stack.type, equals('Stack'));
+ expect(await stack['frames'][topFrame].location.getLine(), 18);
+
+ var result = await isolate.evalFrame(topFrame, "z");
+ print(result);
+ expect(result.valueAsString, equals("7"));
+},
+
+resumeIsolate,
+
];
main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction);

Powered by Google App Engine
This is Rietveld 408576698