From 0e5954cf966cd008d345d8ea4ddae720b6fd4223 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 17 Jul 2021 19:02:03 +0200 Subject: [PATCH] Fix user test fixtures --- cypress/factories/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/factories/user.js b/cypress/factories/user.js index ca8bb896e..37fcaaab4 100644 --- a/cypress/factories/user.js +++ b/cypress/factories/user.js @@ -13,7 +13,7 @@ export class UserFactory extends Factory { id: '{increment}', username: faker.lorem.word(10) + faker.random.uuid(), password: '$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.', // 1234 - is_active: true, + status: 0, created: formatISO(now), updated: formatISO(now) }