Skip to content

Commit

Permalink
[idb_shim] v2.6.0+1 fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jul 18, 2024
1 parent 621467c commit 22337b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion idb_shim/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.6.0
## 2.6.0+1

* More support for sdb, including key on 2,3 and 4 fields, and more.

Expand Down
2 changes: 1 addition & 1 deletion idb_shim/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: idb_shim
version: 2.6.0
version: 2.6.0+1
description: indexed_db dart base interface with implementation for native (browser), file (io) and in memory.
homepage: https://github.com/tekartik/idb_shim.dart/tree/master/idb_shim
topics:
Expand Down
4 changes: 2 additions & 2 deletions idb_shim/test/multiplatform/sdb_utils_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ void main() {
var keyRange = idbKeyRangeFromBoundaries(SdbBoundaries.values(1, 3));
expect(keyRange.toString(), 'kr[1-3[');
keyRange = idbKeyRangeFromBoundaries(
SdbBoundaries.values((1, null), (3, 'test'), includeLower: false));
expect(keyRange.toString(), 'kr][1, null]-[3, test][');
SdbBoundaries.values((1, ''), (3, 'test'), includeLower: false));
expect(keyRange.toString(), 'kr][1, ]-[3, test][');
});
});
}

0 comments on commit 22337b5

Please sign in to comment.