summaryrefslogtreecommitdiff
path: root/spec/finders/issues_finder_spec.rb
diff options
context:
space:
mode:
authorMark Chao <mchao@gitlab.com>2018-05-14 10:07:53 +0800
committerMark Chao <mchao@gitlab.com>2018-05-21 09:55:30 +0800
commitd839b880a256f208ae5a0d877765bc5fcbfcd44d (patch)
treef6314a8f0ba20856e400a34a41069d630a5f3196 /spec/finders/issues_finder_spec.rb
parent40683268b2b5ad807194387d8345a30195e178c4 (diff)
downloadgitlab-ce-d839b880a256f208ae5a0d877765bc5fcbfcd44d.tar.gz
Add created_by_me and assigned_to_me scopes44799-api-naming-issue-scope
Deprecate corresponding dash versions created-by-me and assigned-to-me
Diffstat (limited to 'spec/finders/issues_finder_spec.rb')
-rw-r--r--spec/finders/issues_finder_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/finders/issues_finder_spec.rb b/spec/finders/issues_finder_spec.rb
index 45439640ea3..74e91b02f0f 100644
--- a/spec/finders/issues_finder_spec.rb
+++ b/spec/finders/issues_finder_spec.rb
@@ -372,7 +372,7 @@ describe IssuesFinder do
end
context 'personal scope' do
- let(:scope) { 'assigned-to-me' }
+ let(:scope) { 'assigned_to_me' }
it 'returns issue assigned to the user' do
expect(issues).to contain_exactly(issue1, issue2)