From d2242184ddbe69f4c5bd998a0af20d2a2963bec2 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 8 Apr 2023 12:18:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(step)=20fix=20fixture=20step=20?= =?UTF-8?q?method=20with=20estimation=20non=20nullable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/use-cases/task/models/step.fixture.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use-cases/task/models/step.fixture.ts b/src/use-cases/task/models/step.fixture.ts index 96e1bb3..bc61b79 100644 --- a/src/use-cases/task/models/step.fixture.ts +++ b/src/use-cases/task/models/step.fixture.ts @@ -6,5 +6,5 @@ export const createStepFixture = (partialStep?: Partial) => new Step( partialStep?.id ?? faker.datatype.uuid(), partialStep?.title ?? faker.animal.bird(), - partialStep?.estimation + partialStep?.estimation ?? 0 )