Skip to content

Commit 911cbb7

Browse files
committed
chore: fix import
1 parent 2c33adf commit 911cbb7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/connectivity/src/http-agent/http-agent.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jest.mock('jks-js', () => ({
99
import * as jks from 'jks-js';
1010
import { registerDestinationCache } from '../scp-cf/destination/register-destination-cache';
1111
import { certAsString } from '../../../../test-resources/test/test-util/test-certificate';
12-
import { agentCreateCache, getAgentConfig } from './http-agent';
12+
import { agentCache, getAgentConfig } from './http-agent';
1313
import type { HttpDestination } from '../scp-cf/destination';
1414
import type { DestinationCertificate } from '../scp-cf';
1515

@@ -259,7 +259,7 @@ describe('createAgent', () => {
259259

260260
describe('agent caching', () => {
261261
beforeEach(() => {
262-
agentCreateCache.clear();
262+
agentCache.clear();
263263
});
264264

265265
it('returns the same agent instance for the same destination options', async () => {

0 commit comments

Comments
 (0)