Skip to content

Commit dad0111

Browse files
committed
fix: update result
1 parent 6c84179 commit dad0111

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools/atlas/metadata/connectCluster.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class ConnectClusterTool extends AtlasToolBase {
223223
content: [
224224
{
225225
type: "text",
226-
text: `Connecting to cluster "${clusterName}"...`,
226+
text: `Attempting to connect to cluster "${clusterName}"...`,
227227
},
228228
],
229229
};

tests/integration/tools/atlas/clusters.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ describeWithAtlas("clusters", (integration) => {
179179
expect(response.content).toBeArray();
180180
expect(response.content).toHaveLength(1);
181181
expect(response.content[0]?.type).toEqual("text");
182-
expect(response.content[0]?.text).toContain(`Connecting to cluster "${clusterName}"...`);
182+
expect(response.content[0]?.text).toContain(`Attempting to connect to cluster "${clusterName}"...`);
183183

184184
for (let i = 0; i < 600; i++) {
185185
const response = (await integration.mcpClient().callTool({

0 commit comments

Comments
 (0)