summaryrefslogtreecommitdiff
path: root/spec/models/issue_collection_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/issue_collection_spec.rb')
-rw-r--r--spec/models/issue_collection_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/issue_collection_spec.rb b/spec/models/issue_collection_spec.rb
index 34d98a3c975..580a98193af 100644
--- a/spec/models/issue_collection_spec.rb
+++ b/spec/models/issue_collection_spec.rb
@@ -42,7 +42,7 @@ describe IssueCollection do
context 'using a user that has reporter access to the project' do
it 'returns the issues of the project' do
- project.team << [user, :reporter]
+ project.add_reporter(user)
expect(collection.updatable_by_user(user)).to eq([issue1, issue2])
end