Skip to content

Commit 8601c05

Browse files
chore: fix tests after merge
1 parent 67d3ea8 commit 8601c05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/tools/mongodb/read/find.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@ describeWithMongoDB("find tool with default configuration", (integration) => {
245245
});
246246

247247
const content = getResponseContent(response);
248-
expect(content).toContain('Found 1 documents in the collection "foo_with_dates".');
248+
expect(content).toContain(
249+
'Query on collection "foo_with_dates" resulted in 1 documents. Returning 1 documents.'
250+
);
249251

250252
const docs = getDocsFromUntrustedContent<{ date: Date }>(content);
251253
expect(docs.length).toEqual(1);

0 commit comments

Comments
 (0)