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

Unified Diff: tests/lib_strong/html/storage_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/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');

Powered by Google App Engine
This is Rietveld 408576698