Skip to content

Commit

Permalink
Fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sanrai committed Sep 17, 2024
1 parent 347a1d0 commit 8a0cce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/blocks/caas/utils.test.js
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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 };
Expand Down

0 comments on commit 8a0cce0

Please sign in to comment.