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; |