Skip to content

Commit e806f3c

Browse files
committed
🚨 Fixed linter errors of date interceptors project
1 parent a2c5875 commit e806f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎projects/date-interceptors/src/lib/request-body-date-format.interceptor.spec.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe('RequestBodyDateFormatInterceptor', () => {
125125
const requestUrl = 'https://test-url.com/test';
126126
dummyRequest.castToWritable().url = requestUrl;
127127
dummyRequest.castToWritable().body = testCase.httpRequest;
128-
dummyRequest.clone.andCallFake((update: { body?: unknown | null }) =>
128+
dummyRequest.clone.andCallFake((update: { body: unknown }) =>
129129
new HttpRequest<unknown>('GET', requestUrl).clone(update),
130130
);
131131

0 commit comments

Comments
 (0)