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:
authorCamil Staps <info@camilstaps.nl>2019-08-03 13:57:33 +0300
committerCamil Staps <info@camilstaps.nl>2019-08-07 21:49:37 +0300
commite726ed5e128893158f102b87e1407ec0a36fc3ce (patch)
tree279a9ccc0f22a461da6a4298bc803d60cffc32b1 /spec/finders/users_star_projects_finder_spec.rb
parentd2b2486afb5a50ace08bc416be87a1ead12abe3c (diff)
Handle reviewer comments on !24690
Diffstat (limited to 'spec/finders/users_star_projects_finder_spec.rb')
-rw-r--r--spec/finders/users_star_projects_finder_spec.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/finders/users_star_projects_finder_spec.rb b/spec/finders/users_star_projects_finder_spec.rb
index 4c0aa3f8f77..fb1d8088f44 100644
--- a/spec/finders/users_star_projects_finder_spec.rb
+++ b/spec/finders/users_star_projects_finder_spec.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'spec_helper'
describe UsersStarProjectsFinder do
@@ -22,19 +24,19 @@ describe UsersStarProjectsFinder do
describe 'as same user' do
let(:current_user) { private_user }
- it { is_expected.to eq(private_stars + public_stars) }
+ it { is_expected.to match_array(private_stars + public_stars) }
end
describe 'as other user' do
let(:current_user) { other_user }
- it { is_expected.to eq(public_stars) }
+ it { is_expected.to match_array(public_stars) }
end
describe 'as no user' do
let(:current_user) { nil }
- it { is_expected.to eq(public_stars) }
+ it { is_expected.to match_array(public_stars) }
end
end
end