Skip to content

Commit d5cf247

Browse files
committed
chore: fix linting issues
1 parent 667b05e commit d5cf247

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration/common/connectionManager.oidc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ describe.skipIf(process.platform !== "linux")("ConnectionManager OIDC Tests", as
128128
await connectionManager.disconnect();
129129
// for testing, force disconnecting AND setting the connection to closed to reset the
130130
// state of the connection manager
131-
connectionManager.changeState("connection-closed", { tag: "disconnected" });
131+
connectionManager.changeState("connection-close", { tag: "disconnected" });
132132

133133
await integration.connectMcpClient();
134134
}, DEFAULT_TIMEOUT);

tests/integration/common/connectionManager.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describeWithMongoDB("Connection Manager", (integration) => {
2525
describe("when successfully connected", () => {
2626
type ConnectionManagerSpies = {
2727
"connection-request": (event: ConnectionManagerEvents["connection-request"][0]) => void;
28-
"connection-success": (event: ConnectionManagerEvents["connection-succeess"][0]) => void;
28+
"connection-success": (event: ConnectionManagerEvents["connection-success"][0]) => void;
2929
"connection-time-out": (event: ConnectionManagerEvents["connection-time-out"][0]) => void;
3030
"connection-close": (event: ConnectionManagerEvents["connection-close"][0]) => void;
3131
"connection-error": (event: ConnectionManagerEvents["connection-error"][0]) => void;

0 commit comments

Comments
 (0)