File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -327,23 +327,23 @@ describe('http/main', () => {
327327 filter : {
328328 OR : [
329329 {
330- EQ : { "person.org" : "Dev Ops" }
330+ EQ : { "value. person.org" : "Dev Ops" }
331331 } ,
332332 {
333333 "AND" : [
334334 {
335- "EQ" : { "person.org" : "Finance" }
335+ "EQ" : { "value. person.org" : "Finance" }
336336 } ,
337337 {
338- "IN" : { "state" : [ "CA" , "WA" ] }
338+ "IN" : { "value. state" : [ "CA" , "WA" ] }
339339 }
340340 ]
341341 }
342342 ]
343343 } ,
344344 sort : [
345345 {
346- key : "state" ,
346+ key : "value. state" ,
347347 order : "DESC"
348348 }
349349 ] ,
@@ -352,7 +352,6 @@ describe('http/main', () => {
352352 }
353353 } ) ;
354354
355- expect ( res . results ) . toBeDefined ( ) ;
356355 expect ( res . results . length ) . toEqual ( 4 ) ;
357356 expect ( res . results . map ( i => i . key ) . indexOf ( "key-1" ) ) . toBeGreaterThan ( - 1 ) ;
358357 expect ( res . results . map ( i => i . key ) . indexOf ( "key-4" ) ) . toBeGreaterThan ( - 1 ) ;
You can’t perform that action at this time.
0 commit comments