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

Unified Diff: tests/lib_strong/html/location_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/lib_strong/html/location_test.dart
diff --git a/tests/lib_strong/html/location_test.dart b/tests/lib_strong/html/location_test.dart
index 703456d43b054f351dc785093e035169910134c6..933a5649ae9436055412921b681f2037a0b720a9 100644
--- a/tests/lib_strong/html/location_test.dart
+++ b/tests/lib_strong/html/location_test.dart
@@ -6,14 +6,14 @@ main() {
var isLocation = predicate((x) => x is Location, 'is a Location');
test('location hash', () {
- final location = window.location;
- expect(location, isLocation);
+ final location = window.location;
+ expect(location, isLocation);
- // The only navigation we dare try is hash.
- location.hash = 'hello';
- var h = location.hash;
- expect(h, '#hello');
- });
+ // The only navigation we dare try is hash.
+ location.hash = 'hello';
+ var h = location.hash;
+ expect(h, '#hello');
+ });
test('location.origin', () {
var origin = window.location.origin;

Powered by Google App Engine
This is Rietveld 408576698