From 192fed55889f3b8e2ca2e73f7da5168897738d8c Mon Sep 17 00:00:00 2001 From: Desiree Chevalier <dchevalier@gitlab.com> Date: Wed, 23 Oct 2024 12:16:09 -0400 Subject: [PATCH] Update e2e user names for deletion --- .../9_data_stores/user/follow_user_activity_spec.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qa/qa/specs/features/browser_ui/9_data_stores/user/follow_user_activity_spec.rb b/qa/qa/specs/features/browser_ui/9_data_stores/user/follow_user_activity_spec.rb index 19318fdbe6069..7b8276e1f0ec5 100644 --- a/qa/qa/specs/features/browser_ui/9_data_stores/user/follow_user_activity_spec.rb +++ b/qa/qa/specs/features/browser_ui/9_data_stores/user/follow_user_activity_spec.rb @@ -7,10 +7,12 @@ module QA let(:followed_user_api_client) { Runtime::API::Client.new(:gitlab, user: followed_user) } - let(:followed_user) { create(:user, name: "followed_user_#{SecureRandom.hex(8)}", api_client: admin_api_client) } + let(:followed_user) do + create(:user, name: "QA User followed_user_#{SecureRandom.hex(8)}", api_client: admin_api_client) + end let(:following_user) do - create(:user, name: "following_user_#{SecureRandom.hex(8)}", api_client: admin_api_client) + create(:user, name: "QA User following_user_#{SecureRandom.hex(8)}", api_client: admin_api_client) end let(:group) do -- GitLab