1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 17:34:36 +00:00

chore: fix specs

This commit is contained in:
2022-12-09 18:25:19 +05:00
parent 3701253302
commit 382a3cc987

View File

@@ -11,10 +11,10 @@ describe('noTabs', () => {
const line = "\t%put 'hello';"
expect(noTabs.test(line, 1)).toEqual([
{
message: 'Line is indented with a tab',
message: 'Line contains tab indentation',
lineNumber: 1,
startColumnNumber: 1,
endColumnNumber: 1,
endColumnNumber: 2,
severity: Severity.Warning
}
])