| Index: tests/html/indexeddb_4_test.dart
|
| diff --git a/tests/html/indexeddb_4_test.dart b/tests/html/indexeddb_4_test.dart
|
| index a795de4ed3b442512e9e2940c6793150bb82eff8..16c4be57a13fe11704b39602908f3a1676a91bc4 100644
|
| --- a/tests/html/indexeddb_4_test.dart
|
| +++ b/tests/html/indexeddb_4_test.dart
|
| @@ -30,7 +30,7 @@ class Test {
|
| try {
|
| // Nuke object store if it already exists.
|
| db.deleteObjectStore(STORE_NAME);
|
| - } catch (IDBDatabaseException e) { }
|
| + } on IDBDatabaseException catch (e) { }
|
| db.createObjectStore(STORE_NAME);
|
|
|
| var transaction = e.target.result;
|
|
|