@@ -484,7 +484,7 @@ export function checkFunctionListResponse(
484
484
typeof libName === "string"
485
485
? libName === lib [ "library_name" ]
486
486
: ( libName as Buffer ) . compare ( lib [ "library_name" ] as Buffer ) ==
487
- 0 ;
487
+ 0 ;
488
488
489
489
if ( hasLib ) {
490
490
const functions = lib [ "functions" ] ;
@@ -537,7 +537,7 @@ export function checkFunctionStatsResponse(
537
537
if ( response . running_script !== null && runningFunction . length == 0 ) {
538
538
fail (
539
539
"Unexpected running function info: " +
540
- ( response . running_script . command as string [ ] ) . join ( " " ) ,
540
+ ( response . running_script . command as string [ ] ) . join ( " " ) ,
541
541
) ;
542
542
}
543
543
@@ -577,10 +577,10 @@ export function validateTransactionResponse(
577
577
const actual =
578
578
response ?. [ i ] instanceof Map
579
579
? JSON . stringify (
580
- Array . from (
581
- ( response ?. [ i ] as ReturnTypeMap ) ?. entries ( ) ,
582
- ) ,
583
- )
580
+ Array . from (
581
+ ( response ?. [ i ] as ReturnTypeMap ) ?. entries ( ) ,
582
+ ) ,
583
+ )
584
584
: JSON . stringify ( response ?. [ i ] ) ;
585
585
failedChecks . push (
586
586
`${ testName } failed, expected <${ expected } >, actual <${ actual } >` ,
@@ -591,7 +591,7 @@ export function validateTransactionResponse(
591
591
if ( failedChecks . length > 0 ) {
592
592
throw new Error (
593
593
"Checks failed in transaction response:\n" +
594
- failedChecks . join ( "\n" ) ,
594
+ failedChecks . join ( "\n" ) ,
595
595
) ;
596
596
}
597
597
}
@@ -1381,18 +1381,18 @@ export async function transactionTest(
1381
1381
'xautoclaim(key9, groupName1, consumer, 0, "0-0", { count: 1 })' ,
1382
1382
gte ( version , "7.0.0" )
1383
1383
? [
1384
- "0-0" ,
1385
- convertRecordToGlideRecord ( {
1386
- "0-2" : [ [ "field" , "value2" ] ] ,
1387
- } ) ,
1388
- [ ] ,
1389
- ]
1384
+ "0-0" ,
1385
+ convertRecordToGlideRecord ( {
1386
+ "0-2" : [ [ "field" , "value2" ] ] ,
1387
+ } ) ,
1388
+ [ ] ,
1389
+ ]
1390
1390
: [
1391
- "0-0" ,
1392
- convertRecordToGlideRecord ( {
1393
- "0-2" : [ [ "field" , "value2" ] ] ,
1394
- } ) ,
1395
- ] ,
1391
+ "0-0" ,
1392
+ convertRecordToGlideRecord ( {
1393
+ "0-2" : [ [ "field" , "value2" ] ] ,
1394
+ } ) ,
1395
+ ] ,
1396
1396
] ) ;
1397
1397
baseTransaction . xautoclaimJustId ( key9 , groupName1 , consumer , 0 , "0-0" ) ;
1398
1398
responseData . push ( [
0 commit comments