Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-06-08 15:08:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-08 15:08:54 +0300
commit473b876fe3d7e0b36eb6268cc44a4fe0d94f4422 (patch)
tree2f6d5f2ecad53015024b6b1509896f5933c5c3e6 /spec/lib/sidebars/user_profile/panel_spec.rb
parentdca8df0c90d8727d69b3501b15b481546897f3cd (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/sidebars/user_profile/panel_spec.rb')
-rw-r--r--spec/lib/sidebars/user_profile/panel_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/sidebars/user_profile/panel_spec.rb b/spec/lib/sidebars/user_profile/panel_spec.rb
index c62c7f9fd96..a2bf490bc58 100644
--- a/spec/lib/sidebars/user_profile/panel_spec.rb
+++ b/spec/lib/sidebars/user_profile/panel_spec.rb
@@ -3,8 +3,8 @@
require 'spec_helper'
RSpec.describe Sidebars::UserProfile::Panel, feature_category: :navigation do
- let_it_be(:current_user) { create(:user) }
- let_it_be(:user) { create(:user) }
+ let(:current_user) { build_stubbed(:user) }
+ let(:user) { build_stubbed(:user) }
let(:context) { Sidebars::Context.new(current_user: current_user, container: user) }