1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-17 01:00:06 +00:00

chore(lint): fixed linting

This commit is contained in:
Yury Shkoda
2021-05-20 08:58:25 +03:00
parent 0c9b23c51b
commit fa9e4136bc
4 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ describe('hasMacroParentheses', () => {
it('should return an empty array when the file is undefined', () => {
const content = undefined
expect(hasMacroParentheses.test((content as unknown) as string)).toEqual([])
expect(hasMacroParentheses.test(content as unknown as string)).toEqual([])
})
describe('with extra spaces and comments', () => {