Index: tests/html/indexeddb_4_test.dart |
diff --git a/tests/html/indexeddb_4_test.dart b/tests/html/indexeddb_4_test.dart |
index 06a4a0bf7034e90ac33adf2b148f8023719ed554..7ae6014c9d1c93f4ce851b1ea891daadf9c8bc23 100644 |
--- a/tests/html/indexeddb_4_test.dart |
+++ b/tests/html/indexeddb_4_test.dart |
@@ -23,7 +23,7 @@ Future<Database> createAndOpenDb() { |
Future<Database> writeItems(Database db) { |
Future<Object> write(index) { |
- var transaction = db.transaction(STORE_NAME, 'readwrite'); |
+ var transaction = db.transaction([STORE_NAME], 'readwrite'); |
return transaction.objectStore(STORE_NAME).put( |
{'content': 'Item $index'}, index); |
} |