Skip to content

Commit ebb6f3f

Browse files
committed
use the correct test project prefix
1 parent bea2a6f commit ebb6f3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describeWithAtlas("projects", (integration) => {
3636
});
3737

3838
it("should create a project", async () => {
39-
const projName = `test-project-${new ObjectId().toString()}`;
39+
const projName = `testProj-${new ObjectId().toString()}`;
4040
projectsToCleanup.push(projName);
4141

4242
const response = await integration.mcpClient().callTool({
@@ -54,7 +54,7 @@ describeWithAtlas("projects", (integration) => {
5454
let projName: string;
5555
let orgId: string;
5656
beforeAll(async () => {
57-
projName = `list-projects-test-${new ObjectId().toString()}`;
57+
projName = `testProj-${new ObjectId().toString()}`;
5858
projectsToCleanup.push(projName);
5959

6060
const orgs = await integration.mcpServer().session.apiClient.listOrganizations();

0 commit comments

Comments
 (0)