| Index: tests/dom/indexeddb_4_test.dart
|
| diff --git a/tests/dom/indexeddb_4_test.dart b/tests/dom/indexeddb_4_test.dart
|
| index ba2d2fdc3a1ac50368a335c9ab23e884187dd688..6132fa5abf176111349162580e7c0aab049bc440 100644
|
| --- a/tests/dom/indexeddb_4_test.dart
|
| +++ b/tests/dom/indexeddb_4_test.dart
|
| @@ -59,8 +59,8 @@ class Test {
|
| IDBObjectStore objectStore = txn.objectStore(STORE_NAME);
|
| IDBRequest cursorRequest = objectStore.openCursor(range);
|
| int itemCount = 0;
|
| - int firstKey = null;
|
| - int lastKey = null;
|
| + num firstKey = null;
|
| + num lastKey = null;
|
| cursorRequest.addEventListener("success", (e) {
|
| var cursor = e.target.result;
|
| if (cursor != null) {
|
|
|