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

Unified Diff: runtime/observatory/tests/service/read_stream_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/read_stream_test.dart
diff --git a/runtime/observatory/tests/service/read_stream_test.dart b/runtime/observatory/tests/service/read_stream_test.dart
index 1376d50b02631ce61612596e0b08dc9c9a710393..bf643bbd5a94c1423b93e03efce74ac5220b5104 100644
--- a/runtime/observatory/tests/service/read_stream_test.dart
+++ b/runtime/observatory/tests/service/read_stream_test.dart
@@ -24,7 +24,7 @@ testRoundTrip(final int n) {
expect(stream.isZero, equals(n == 0));
- expect(stream.low, equals((n >> 0) & 0xFFFFFFF));
+ expect(stream.low, equals((n >> 0) & 0xFFFFFFF));
expect(stream.mid, equals((n >> 28) & 0xFFFFFFF));
expect(stream.high, equals((n >> 56) & 0xFFFFFFF));

Powered by Google App Engine
This is Rietveld 408576698