Skip to content

Commit 55ed9b8

Browse files
author
Sven Ulrich
committed
jest: linting
1 parent 37e09ab commit 55ed9b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const EOL = '\r\n';
66
describe('String.IsNullOrWhitespace', () => {
77

88
it('should return true on null string', () => {
9-
let teststring: any = null;
9+
const teststring: String | null = null;
1010
let result = String.IsNullOrWhiteSpace(teststring);
1111
expect(result).toBe(true);
1212
result = String.isNullOrWhiteSpace(teststring);

0 commit comments

Comments
 (0)