test: change only color of a stage

This commit is contained in:
Marc-Roig 2023-04-28 16:58:57 +02:00
parent e114800c2d
commit b544fe622f
No known key found for this signature in database
GPG Key ID: FB4E2C43A0BEE249

View File

@ -282,7 +282,7 @@ describeOnCondition(edition === 'EE')('Review workflows', () => {
test("It should assign a default color to stages if they don't have one", async () => {
await requests.admin.put(`/admin/review-workflows/workflows/${testWorkflow.id}/stages`, {
body: {
data: [defaultStage, { id: secondStage.id, name: 'new_name', color: '#000000' }],
data: [defaultStage, { id: secondStage.id, name: secondStage.name, color: '#000000' }],
},
});