File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
packages/remote-config/test Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -430,9 +430,7 @@ describe('RemoteConfig', () => {
430
430
expect ( activateResponse ) . to . be . false ;
431
431
expect ( storage . setActiveConfigEtag ) . to . not . have . been . called ;
432
432
expect ( storageCache . setActiveConfig ) . to . not . have . been . called ;
433
- expect (
434
- storage . setActiveConfigTemplateVersion
435
- ) . to . not . have . been . calledWith ( TEMPLATE_VERSION ) ;
433
+ expect ( storage . setActiveConfigTemplateVersion ) . to . not . have . been . called ;
436
434
} ) ;
437
435
438
436
it ( 'does not activate if fetched and active etags are the same' , async ( ) => {
@@ -450,9 +448,7 @@ describe('RemoteConfig', () => {
450
448
expect ( activateResponse ) . to . be . false ;
451
449
expect ( storage . setActiveConfigEtag ) . to . not . have . been . called ;
452
450
expect ( storageCache . setActiveConfig ) . to . not . have . been . called ;
453
- expect (
454
- storage . setActiveConfigTemplateVersion
455
- ) . to . not . have . been . calledWith ( TEMPLATE_VERSION ) ;
451
+ expect ( storage . setActiveConfigTemplateVersion ) . to . not . have . been . called ;
456
452
} ) ;
457
453
458
454
it ( 'activates if fetched and active etags are different' , async ( ) => {
You can’t perform that action at this time.
0 commit comments