1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-07 12:40:05 +00:00

chore: getLineNumber utility removed

This commit is contained in:
Saad Jutt
2021-04-07 16:49:24 +05:00
parent 99aec59dd1
commit d317275eb3
6 changed files with 15 additions and 24 deletions

View File

@@ -7,7 +7,7 @@ describe('getColumnNumber', () => {
it('should throw an error when the specified string is not found within the text', () => {
expect(() => getColumnNumber('foo bar', 'baz')).toThrowError(
"String 'baz' was not found in statement 'foo bar'"
"String 'baz' was not found in line 'foo bar'"
)
})
})