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:
authorMark Chao <mchao@gitlab.com>2018-05-14 05:07:53 +0300
committerMark Chao <mchao@gitlab.com>2018-05-21 04:55:30 +0300
commitd839b880a256f208ae5a0d877765bc5fcbfcd44d (patch)
treef6314a8f0ba20856e400a34a41069d630a5f3196 /spec/finders
parent40683268b2b5ad807194387d8345a30195e178c4 (diff)
Add created_by_me and assigned_to_me scopes
Deprecate corresponding dash versions created-by-me and assigned-to-me
Diffstat (limited to 'spec/finders')
-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)