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:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-09 22:09:30 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:59 +0300
commit1b7f137e95ca1cadfcc74fcc0971a0bdf39e9590 (patch)
tree1f7f5b8c5a8f6e47e68d1df9390c526b11e3ea1f /spec/services/boards
parent5490a9fe835f12e3d931bc0a47c0ec177c802140 (diff)
Fix filtering issues by "No Label"
Diffstat (limited to 'spec/services/boards')
-rw-r--r--spec/services/boards/issues/list_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/boards/issues/list_service_spec.rb b/spec/services/boards/issues/list_service_spec.rb
index 5735d0bade6..f7f45983d26 100644
--- a/spec/services/boards/issues/list_service_spec.rb
+++ b/spec/services/boards/issues/list_service_spec.rb
@@ -39,7 +39,7 @@ describe Boards::Issues::ListService, services: true do
it 'delegates search to IssuesFinder' do
params = { id: list1.id }
- expect_any_instance_of(IssuesFinder).to receive(:execute).once
+ expect_any_instance_of(IssuesFinder).to receive(:execute).once.and_call_original
described_class.new(project, user, params).execute
end