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(
333333 filterValue = MIN_VALUE ;
334334 break ;
335335 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.
338338 filterValue = {
339339 arrayValue : { values : [ MIN_VALUE ] }
340340 } ;
@@ -419,8 +419,8 @@ export function targetGetUpperBound(
419419 filterValue = MAX_VALUE ;
420420 break ;
421421 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.
424424 filterValue = {
425425 arrayValue : { values : [ MAX_VALUE ] }
426426 } ;
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ describe('Bytes', () => {
4747 } ) ;
4848 } ) ;
4949
50-
5150 it ( 'works with instanceof checks' , ( ) => {
5251 expect ( Bytes . fromBase64String ( '' ) instanceof Bytes ) . to . equal ( true ) ;
5352 } ) ;
You can’t perform that action at this time.
0 commit comments