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 19318fdbe60696dd4d70c9d20f354e8f0bc34d2e..7b8276e1f0ec53cd2349cbe82aef74fd0ecf86fe 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