1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-16 00:30:05 +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';" const line = "\t%put 'hello';"
expect(noTabs.test(line, 1)).toEqual([ expect(noTabs.test(line, 1)).toEqual([
{ {
message: 'Line is indented with a tab', message: 'Line contains tab indentation',
lineNumber: 1, lineNumber: 1,
startColumnNumber: 1, startColumnNumber: 1,
endColumnNumber: 1, endColumnNumber: 2,
severity: Severity.Warning severity: Severity.Warning
} }
]) ])