| Index: tests/html/indexeddb_3_test.dart
|
| diff --git a/tests/html/indexeddb_3_test.dart b/tests/html/indexeddb_3_test.dart
|
| index 7bdde5d0cd341765dbb14257236b8d5ba4e71bbd..5ed83eaac6f20ef8f39bf9964af72ef2f3d81785 100644
|
| --- a/tests/html/indexeddb_3_test.dart
|
| +++ b/tests/html/indexeddb_3_test.dart
|
| @@ -24,7 +24,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('Item $index', index);
|
| }
|
|
|
|
|