Index: tests/html/indexeddb_2_test.dart |
diff --git a/tests/html/indexeddb_2_test.dart b/tests/html/indexeddb_2_test.dart |
index d197585e49c0eba82b61e41e348d442b1e58c791..028dc8b8cbe370116a4b0c86119c572550fe6a31 100644 |
--- a/tests/html/indexeddb_2_test.dart |
+++ b/tests/html/indexeddb_2_test.dart |
@@ -28,7 +28,7 @@ testReadWrite(key, value, check, |
onUpgradeNeeded: createObjectStore); |
})).then(expectAsync1((result) { |
db = result; |
- var transaction = db.transaction([storeName], 'readwrite'); |
+ var transaction = db.transactionList([storeName], 'readwrite'); |
transaction.objectStore(storeName).put(value, key); |
return transaction.completed; |