| Index: tests/html/indexeddb_2_test.dart
|
| diff --git a/tests/html/indexeddb_2_test.dart b/tests/html/indexeddb_2_test.dart
|
| index 66fef6c89f7c5fc9ccafef47eb36c299877da655..b5053c91dcf0af1df6f22aff00815862201815a0 100644
|
| --- a/tests/html/indexeddb_2_test.dart
|
| +++ b/tests/html/indexeddb_2_test.dart
|
| @@ -43,8 +43,9 @@ testReadWrite(key, value, check,
|
| step1() {
|
| var transaction = db.transaction([storeName], 'readwrite');
|
| var request = transaction.objectStore(storeName).put(value, key);
|
| - request.onSuccess.listen(expectAsync1(step2));
|
| request.onError.listen(fail);
|
| +
|
| + transaction.onComplete.listen(expectAsync1(step2));
|
| }
|
|
|
| initDb(e) {
|
|
|