From 95d747c2c51ffd17212c548a8c8acd889fbe2542 Mon Sep 17 00:00:00 2001 From: Crisler Wintler <82983797+crislerwin@users.noreply.github.com> Date: Fri, 29 Sep 2023 00:37:07 +0000 Subject: [PATCH] fix: test description --- tests/infra/db/mongodb/survey-mongo-repository.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/infra/db/mongodb/survey-mongo-repository.spec.ts b/tests/infra/db/mongodb/survey-mongo-repository.spec.ts index 4490833..193bffb 100644 --- a/tests/infra/db/mongodb/survey-mongo-repository.spec.ts +++ b/tests/infra/db/mongodb/survey-mongo-repository.spec.ts @@ -114,7 +114,7 @@ describe('SurveyMongoRepository', () => { expect(exists).toBe(true) }) - test('Should return false if survey exists', async () => { + test('Should return false if survey not exists', async () => { const sut = makeSut() const exists = await sut.checkById(new FakeObjectId().toHexString()) expect(exists).toBe(false)