From 27f6590288e2c0a072dbb042b853e4a36668bcb3 Mon Sep 17 00:00:00 2001 From: Payton Burdette <pburdette@gitlab.com> Date: Thu, 2 Dec 2021 19:10:54 +0000 Subject: [PATCH] Change action text on test case --- .../jobs/components/table/cells/actions_cell_spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/frontend/jobs/components/table/cells/actions_cell_spec.js b/spec/frontend/jobs/components/table/cells/actions_cell_spec.js index e89b8477334b3..b70fca8e9e616 100644 --- a/spec/frontend/jobs/components/table/cells/actions_cell_spec.js +++ b/spec/frontend/jobs/components/table/cells/actions_cell_spec.js @@ -65,10 +65,10 @@ describe('Job actions cell', () => { }); it.each` - button | action | jobType - ${findPlayButton} | ${'play'} | ${cannotPlayJob} - ${findRetryButton} | ${'retry'} | ${cannotRetryJob} - ${findPlayScheduledJobButton} | ${'download artifacts'} | ${cannotPlayScheduledJob} + button | action | jobType + ${findPlayButton} | ${'play'} | ${cannotPlayJob} + ${findRetryButton} | ${'retry'} | ${cannotRetryJob} + ${findPlayScheduledJobButton} | ${'play scheduled'} | ${cannotPlayScheduledJob} `('does not display the $action button if user cannot update build', ({ button, jobType }) => { createComponent(jobType); -- GitLab