Index: tests/lib_strong/html/storage_test.dart |
diff --git a/tests/lib_strong/html/storage_test.dart b/tests/lib_strong/html/storage_test.dart |
index c614ca97ccd17c413dfccc45d36d7b3f297f81a6..b6b07dacb0c1309f82f95cdca92af510f81b5d7a 100644 |
--- a/tests/lib_strong/html/storage_test.dart |
+++ b/tests/lib_strong/html/storage_test.dart |
@@ -17,8 +17,8 @@ main() { |
test('event', () { |
// Bug 8076 that not all optional params are optional in Dartium. |
- var event = new StorageEvent('something', oldValue: 'old', newValue: 'new', |
- url: 'url', key: 'key'); |
+ var event = new StorageEvent('something', |
+ oldValue: 'old', newValue: 'new', url: 'url', key: 'key'); |
expect(event is StorageEvent, isTrue); |
expect(event.oldValue, 'old'); |
expect(event.newValue, 'new'); |