mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
fix bug in storage test
This commit is contained in:
parent
ba274ea998
commit
0caddadcfe
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ func TestStorage(t *testing.T) {
|
|||
SetBit(bm, i)
|
||||
}
|
||||
fmt.Println("STORE")
|
||||
storage.Store(int64(bitmap_id), db, frame, slice, uint64(filter), bm.(*Bitmap))
|
||||
storage.Store(uint64(bitmap_id), db, frame, slice, uint64(filter), bm.(*Bitmap))
|
||||
fmt.Println("FETCH")
|
||||
bm2, _ := storage.Fetch(bitmap_id, db, frame, slice)
|
||||
So(BitCount(bm), ShouldEqual, BitCount(bm2))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue