summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-02-06 13:55:36 +0000
committerPhil Hughes <me@iamphill.com>2017-02-06 13:55:36 +0000
commitb27f66380f36095373fd18ee92d7dce64cf3fdc3 (patch)
tree4f6e350ffcb3c80948937a3edc7fc4de1eb559e3
parent05ec0f281e0dabcf8282206503046cf9894698f8 (diff)
downloadgitlab-ce-issues-modal-filters.tar.gz
Fixed failing tests because list doens't existissues-modal-filters
-rw-r--r--spec/features/boards/modal_filter_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/features/boards/modal_filter_spec.rb b/spec/features/boards/modal_filter_spec.rb
index 62b0efdb51c..1cf0d11d448 100644
--- a/spec/features/boards/modal_filter_spec.rb
+++ b/spec/features/boards/modal_filter_spec.rb
@@ -6,6 +6,8 @@ describe 'Issue Boards add issue modal filtering', :feature, :js do
let(:project) { create(:empty_project, :public) }
let(:board) { create(:board, project: project) }
+ let(:planning) { create(:label, project: project, name: 'Planning') }
+ let!(:list1) { create(:list, board: board, label: planning, position: 0) }
let(:user) { create(:user) }
let(:user2) { create(:user) }
let!(:issue1) { create(:issue, project: project) }