File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -956,20 +956,20 @@ t('Cursor custom n works', async() => {
956
956
return [ '10,10' , order . join ( ',' ) ]
957
957
} )
958
958
959
- ot ( 'Cursor custom with rest n works' , async ( ) => {
959
+ t ( 'Cursor custom with rest n works' , async ( ) => {
960
960
const order = [ ]
961
961
await sql `select * from generate_series(1,20)` . cursor ( 11 , async ( x ) => {
962
962
order . push ( x . length )
963
963
} )
964
964
return [ '11,9' , order . join ( ',' ) ]
965
965
} )
966
966
967
- ot ( 'Cursor custom with less results than batch size works' , async ( ) => {
967
+ t ( 'Cursor custom with less results than batch size works' , async ( ) => {
968
968
const order = [ ]
969
969
await sql `select * from generate_series(1,20)` . cursor ( 21 , async ( x ) => {
970
970
order . push ( x . length )
971
971
} )
972
- return [ '11,9 ' , order . join ( ',' ) ]
972
+ return [ '20 ' , p ( order . join ( ',' ) ) ]
973
973
} )
974
974
975
975
t ( 'Cursor cancel works' , async ( ) => {
You can’t perform that action at this time.
0 commit comments