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

Unified Diff: tests/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/html/storage_test.dart
diff --git a/tests/html/storage_test.dart b/tests/html/storage_test.dart
index b68e9d499b833bd401e65c3beea24f898ab16344..fd3e8a753bcb9966765e2a8d498c06e47bfa418e 100644
--- a/tests/html/storage_test.dart
+++ b/tests/html/storage_test.dart
@@ -1,4 +1,5 @@
library StorageTest;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
@@ -19,8 +20,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