Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 7bac877

Browse files
committed
fix lint error
1 parent 4bb11f8 commit 7bac877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/linter-htmlhint-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('The htmlhint provider for Linter', () => {
2626
expect(messages[0].type).toEqual('error');
2727
expect(messages[0].text).toEqual('Doctype must be declared first.');
2828
expect(messages[0].filePath).toMatch(/.+bad\.html$/);
29-
expect(messages[0].range).toEqual([ [ 0, 0 ], [ 0, 13 ] ]);
29+
expect(messages[0].range).toEqual([[0, 0], [0, 13]]);
3030
});
3131
});
3232
});

0 commit comments

Comments
 (0)