File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 35
35
runs-on : ubuntu-latest
36
36
env :
37
37
GOVER : 1.17
38
- DAPR_CLI_VER : 1.6 .0
39
- DAPR_RUNTIME_VER : 1.6 .0
38
+ DAPR_CLI_VER : 1.7 .0
39
+ DAPR_RUNTIME_VER : 1.7 .0
40
40
DAPR_INSTALL_URL : https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
41
41
DAPR_CLI_REF : ' 9472e6d977817243d6da28af3e3ca744414c54e6' # TODO, remove once DAPR CLI is upgraded to v1.7
42
42
DAPR_REF : ' '
Original file line number Diff line number Diff line change @@ -340,23 +340,23 @@ describe('http/main', () => {
340
340
filter : {
341
341
OR : [
342
342
{
343
- EQ : { "value. person.org" : "Dev Ops" }
343
+ EQ : { "person.org" : "Dev Ops" }
344
344
} ,
345
345
{
346
346
"AND" : [
347
347
{
348
- "EQ" : { "value. person.org" : "Finance" }
348
+ "EQ" : { "person.org" : "Finance" }
349
349
} ,
350
350
{
351
- "IN" : { "value. state" : [ "CA" , "WA" ] }
351
+ "IN" : { "state" : [ "CA" , "WA" ] }
352
352
}
353
353
]
354
354
}
355
355
]
356
356
} ,
357
357
sort : [
358
358
{
359
- key : "value. state" ,
359
+ key : "state" ,
360
360
order : "DESC"
361
361
}
362
362
] ,
@@ -365,6 +365,7 @@ describe('http/main', () => {
365
365
}
366
366
} ) ;
367
367
368
+ expect ( res . results ) . toBeDefined ( ) ;
368
369
expect ( res . results . length ) . toEqual ( 4 ) ;
369
370
expect ( res . results . map ( i => i . key ) . indexOf ( "key-1" ) ) . toBeGreaterThan ( - 1 ) ;
370
371
expect ( res . results . map ( i => i . key ) . indexOf ( "key-4" ) ) . toBeGreaterThan ( - 1 ) ;
You can’t perform that action at this time.
0 commit comments