@@ -89,7 +89,7 @@ prepareAndRunTest('operators API supports slowEqual', dir, (t, db, raf) => {
89
89
t . equal ( queryTree . data . indexType , 'value_content_type' )
90
90
t . notOk ( queryTree . data . indexAll )
91
91
t . deepEqual ( queryTree . data . value , Buffer . from ( 'post' ) )
92
- t . true ( queryTree . data . seek . toString ( ) . includes ( 'compiledSeek ' ) )
92
+ t . true ( queryTree . data . seek . toString ( ) . includes ( 'bipf.seekKey ' ) )
93
93
94
94
t . equal ( typeof queryTree . meta , 'object' , 'queryTree contains meta' )
95
95
t . equal (
@@ -186,7 +186,7 @@ prepareAndRunTest('slowEqual 3 args', dir, (t, db, raf) => {
186
186
t . equal ( queryTree . data . indexType , 'value_content_type' )
187
187
t . equal ( queryTree . data . indexAll , true )
188
188
t . deepEqual ( queryTree . data . value , Buffer . from ( 'post' ) )
189
- t . true ( queryTree . data . seek . toString ( ) . includes ( 'compiledSeek ' ) )
189
+ t . true ( queryTree . data . seek . toString ( ) . includes ( 'bipf.seekKey ' ) )
190
190
191
191
t . end ( )
192
192
} )
@@ -253,7 +253,7 @@ prepareAndRunTest('slowEqual with prefix', dir, (t, db, raf) => {
253
253
254
254
t . equal ( queryTree . data . indexType , 'value_content_type' )
255
255
t . deepEqual ( queryTree . data . value , Buffer . from ( 'post' ) )
256
- t . true ( queryTree . data . seek . toString ( ) . includes ( 'compiledSeek ' ) )
256
+ t . true ( queryTree . data . seek . toString ( ) . includes ( 'bipf.seekKey ' ) )
257
257
t . equal ( queryTree . data . prefix , 32 )
258
258
259
259
t . end ( )
@@ -300,14 +300,14 @@ prepareAndRunTest('operators API supports or()', dir, (t, db, raf) => {
300
300
t . deepEqual ( queryTree . data [ 1 ] . data [ 0 ] . data . indexType , 'value_author' )
301
301
t . deepEqual ( queryTree . data [ 1 ] . data [ 0 ] . data . value , Buffer . from ( alice . id ) )
302
302
t . true (
303
- queryTree . data [ 1 ] . data [ 0 ] . data . seek . toString ( ) . includes ( 'compiledSeek ' )
303
+ queryTree . data [ 1 ] . data [ 0 ] . data . seek . toString ( ) . includes ( 'bipf.seekKey ' )
304
304
)
305
305
306
306
t . equal ( queryTree . data [ 1 ] . data [ 1 ] . type , 'EQUAL' )
307
307
t . equal ( queryTree . data [ 1 ] . data [ 1 ] . data . indexType , 'value_author' )
308
308
t . deepEqual ( queryTree . data [ 1 ] . data [ 1 ] . data . value , Buffer . from ( bob . id ) )
309
309
t . true (
310
- queryTree . data [ 1 ] . data [ 1 ] . data . seek . toString ( ) . includes ( 'compiledSeek ' )
310
+ queryTree . data [ 1 ] . data [ 1 ] . data . seek . toString ( ) . includes ( 'bipf.seekKey ' )
311
311
)
312
312
313
313
t . end ( )
0 commit comments