Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust test in tls_settings_provider.test.ts
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
cwperks committed Mar 28, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Urhengulas Johann Hemmann
1 parent b399ea9 commit d1ed005
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ describe('readCertificateAuthorities', () => {
expect(mockReadFileSync).toHaveBeenCalledTimes(0);
mockReadFileSync.mockClear();
expect(certificateAuthorities).toEqual({
certificateAuthorities: [],
certificateAuthorities: undefined,
});
});

@@ -52,7 +52,7 @@ describe('readCertificateAuthorities', () => {
expect(mockReadFileSync).toHaveBeenCalledTimes(0);
mockReadFileSync.mockClear();
expect(certificateAuthorities).toEqual({
certificateAuthorities: [],
certificateAuthorities: undefined,
});
});
});

0 comments on commit d1ed005

Please sign in to comment.