File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -333,8 +333,8 @@ export function targetGetLowerBound(
333
333
filterValue = MIN_VALUE ;
334
334
break ;
335
335
case Operator . NOT_IN :
336
- // Porting Note: The Web SDK implements NotIn queries differently from
337
- // Android and only uses a single element array as a NotIn bound.
336
+ // Porting Note: The Web SDK implements notIn queries differently from
337
+ // Android and only uses a single element array as a notIn bound.
338
338
filterValue = {
339
339
arrayValue : { values : [ MIN_VALUE ] }
340
340
} ;
@@ -419,8 +419,8 @@ export function targetGetUpperBound(
419
419
filterValue = MAX_VALUE ;
420
420
break ;
421
421
case Operator . NOT_IN :
422
- // Porting Note: The Web SDK implements NotIn queries differently from
423
- // Android and only uses a single element array as a NotIn bound.
422
+ // Porting Note: The Web SDK implements notIn queries differently from
423
+ // Android and only uses a single element array as a notIn bound.
424
424
filterValue = {
425
425
arrayValue : { values : [ MAX_VALUE ] }
426
426
} ;
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ describe('Bytes', () => {
47
47
} ) ;
48
48
} ) ;
49
49
50
-
51
50
it ( 'works with instanceof checks' , ( ) => {
52
51
expect ( Bytes . fromBase64String ( '' ) instanceof Bytes ) . to . equal ( true ) ;
53
52
} ) ;
You can’t perform that action at this time.
0 commit comments