| Index: tests/html/indexeddb_3_test.dart
|
| diff --git a/tests/html/indexeddb_3_test.dart b/tests/html/indexeddb_3_test.dart
|
| index 486da88dd30f4ba0ccccc71997f1d310599507c0..02ffff378f5f3587e94e161fea2e6f7bb33842cf 100644
|
| --- a/tests/html/indexeddb_3_test.dart
|
| +++ b/tests/html/indexeddb_3_test.dart
|
| @@ -100,14 +100,14 @@ main() {
|
| // Support is tested in indexeddb_1_test
|
| if (IdbFactory.supported) {
|
| var db;
|
| - futureTest('prepare', () {
|
| + test('prepare', () {
|
| return setupDb().then((result) { db = result; });
|
| });
|
| - futureTest('readAll1', () {
|
| + test('readAll1', () {
|
| return readAllViaCursor(db);
|
| });
|
|
|
| - futureTest('readAll2', () {
|
| + test('readAll2', () {
|
| return readAllReversedViaCursor(db);
|
| });
|
| }
|
|
|