Skip to content

Commit 17b9eb5

Browse files
committed
Resolving the comment
1 parent f583f8e commit 17b9eb5

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

packages/remote-config/test/remote_config.test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -430,9 +430,7 @@ describe('RemoteConfig', () => {
430430
expect(activateResponse).to.be.false;
431431
expect(storage.setActiveConfigEtag).to.not.have.been.called;
432432
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;
436434
});
437435

438436
it('does not activate if fetched and active etags are the same', async () => {
@@ -450,9 +448,7 @@ describe('RemoteConfig', () => {
450448
expect(activateResponse).to.be.false;
451449
expect(storage.setActiveConfigEtag).to.not.have.been.called;
452450
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;
456452
});
457453

458454
it('activates if fetched and active etags are different', async () => {

0 commit comments

Comments
 (0)