Commit 2aada821 authored by Walmyr Lima's avatar Walmyr Lima

Use random board names on test, for robustness

For more details, read the following issue:
https://gitlab.com/gitlab-org/gitlab-ee/issues/16176
parent cebc7869
# frozen_string_literal: true
require 'securerandom'
module QA
context 'Plan' do
describe 'Group issue boards' do
let(:board_1) { 'Upstream 1' }
let(:board_2) { 'Upstream 2' }
let(:board_3) { 'Upstream 3' }
let(:board_1) { "Board-#{SecureRandom.hex(4)}" }
let(:board_2) { "Board-#{SecureRandom.hex(4)}" }
let(:board_3) { "Board-#{SecureRandom.hex(4)}" }
let(:group) do
QA::Resource::Group.fabricate_via_api!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment