Skip to content

Commit eaefd59

Browse files
author
Sven Ulrich
committed
updatedeps: typo in yml
1 parent 24313d8 commit eaefd59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ workflows:
5050
build-and-deploy:
5151
jobs:
5252
- lint
53-
- build
53+
- build:
5454
requires:
5555
- lint
5656
- test:

tests/tests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('String.IsNullOrWhitespace', () => {
88

99
it('should return true on null string', () => {
1010
const teststring: string | null = null;
11-
let result = String.IsNullOrWhiteSpace(teststring);
11+
let result = String.IsNullOrWhiteSpace(teststring!);
1212
expect(result).to.equal(true);
1313
result = String.isNullOrWhiteSpace(teststring);
1414
expect(result).to.equal(true);

0 commit comments

Comments
 (0)