summaryrefslogtreecommitdiff
path: root/spec/services/boards/lists/create_service_spec.rb
diff options
context:
space:
mode:
authorFatih Acet <acetfatih@gmail.com>2017-02-03 18:01:00 +0000
committerFatih Acet <acetfatih@gmail.com>2017-02-03 18:01:00 +0000
commit3213dfd797fec7014f7fa38ef110cfb785c297a8 (patch)
treefb209e9ee83900a34c39b1172f7301a0a4d8f80a /spec/services/boards/lists/create_service_spec.rb
parent0dc365914c682965774e475921117f4aee359a9b (diff)
parenta810e2e2f28cdc5f204717f5caf24e4e9db4d22b (diff)
downloadgitlab-ce-3213dfd797fec7014f7fa38ef110cfb785c297a8.tar.gz
Merge branch 'add-issues-to-boards' into 'master'
Add issues to boards list Closes #26205 See merge request !8737
Diffstat (limited to 'spec/services/boards/lists/create_service_spec.rb')
-rw-r--r--spec/services/boards/lists/create_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/boards/lists/create_service_spec.rb b/spec/services/boards/lists/create_service_spec.rb
index a7e9efcf93f..ebac38e68f1 100644
--- a/spec/services/boards/lists/create_service_spec.rb
+++ b/spec/services/boards/lists/create_service_spec.rb
@@ -21,7 +21,7 @@ describe Boards::Lists::CreateService, services: true do
end
end
- context 'when board lists has backlog, and done lists' do
+ context 'when board lists has the done list' do
it 'creates a new list at beginning of the list' do
list = service.execute(board)
@@ -40,7 +40,7 @@ describe Boards::Lists::CreateService, services: true do
end
end
- context 'when board lists has backlog, label and done lists' do
+ context 'when board lists has label and done lists' do
it 'creates a new list at end of the label lists' do
list1 = create(:list, board: board, position: 0)