From 8a0cce07aeb7cc7732a1c9cbd9b4f21ec689a51b Mon Sep 17 00:00:00 2001 From: Sanjay Rai Date: Mon, 16 Sep 2024 22:40:25 -0700 Subject: [PATCH] Fixing linting --- test/blocks/caas/utils.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/blocks/caas/utils.test.js b/test/blocks/caas/utils.test.js index d806c85a24..f6f508d246 100644 --- a/test/blocks/caas/utils.test.js +++ b/test/blocks/caas/utils.test.js @@ -1,6 +1,6 @@ import { expect } from '@esm-bundle/chai'; import { stub } from 'sinon'; -import { setConfig, getConfig as pageConfigHelper } from '../../../libs/utils/utils.js'; +import { setConfig } from '../../../libs/utils/utils.js'; import { defaultState, getConfig, @@ -157,7 +157,7 @@ describe('getConfig', () => { ]; it('does not include linkTransformer in config when caasLinkTransformer is not defined', async () => { - const cfg = { caasLinkTransformer: { 'enabled': true } }; + const cfg = { caasLinkTransformer: { enabled: true } }; setConfig(cfg); const testState = { ...defaultState };