Skip to content

Commit 87aca92

Browse files
committed
test: remove needless return statement
The return type of deepEqual is `void`
1 parent 43219b7 commit 87aca92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/integration_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe('FullRequest', () => {
4040

4141
const list = await k8sApi.listNamespacedPod({ namespace: 'default' });
4242

43-
return deepEqual(list, result);
43+
deepEqual(list, result);
4444
});
4545
});
4646
});

0 commit comments

Comments
 (0)