summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-05-23 12:02:53 -0500
committerAlfredo Sumaran <alfredo@gitlab.com>2016-06-03 17:14:23 -0500
commitd78fd6df0c21f56887d1ca76cb5a40c16d3552b0 (patch)
tree3c0566f32a3bcf35b5ffbbbc00c17611b300f278
parent5ea01651758beee85003bafd9ebea767090cb9f1 (diff)
downloadgitlab-ce-d78fd6df0c21f56887d1ca76cb5a40c16d3552b0.tar.gz
Update CHANGELOG
-rw-r--r--CHANGELOG1
-rw-r--r--spec/features/issues/update_issues_spec.rb2
-rw-r--r--spec/services/issues/bulk_update_service_spec.rb2
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d4885dbe8b6..29926fad7c4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -74,6 +74,7 @@ v 8.8.2
- Fixed issue with enter key selecting wrong option in dropdown. !4210
- When creating a .gitignore file a dropdown with templates will be provided. !4075
- Fix concurrent request when updating build log in browser. !4183
+ - Bulk assign/unassign labels to issues.
v 8.8.1
- Add documentation for the "Health Check" feature
diff --git a/spec/features/issues/update_issues_spec.rb b/spec/features/issues/update_issues_spec.rb
index c6181eed9af..ddbd69b2891 100644
--- a/spec/features/issues/update_issues_spec.rb
+++ b/spec/features/issues/update_issues_spec.rb
@@ -92,7 +92,7 @@ feature 'Multiple issue updating from issues#index', feature: true do
find('.dropdown-menu-milestone a', text: "No Milestone").click
click_update_issues_button
- expect(find('.issue:first-child')).to_not have_content milestone.title
+ expect(find('.issue:first-child')).not_to have_content milestone.title
end
end
diff --git a/spec/services/issues/bulk_update_service_spec.rb b/spec/services/issues/bulk_update_service_spec.rb
index 91d08636951..c777d475dd4 100644
--- a/spec/services/issues/bulk_update_service_spec.rb
+++ b/spec/services/issues/bulk_update_service_spec.rb
@@ -79,7 +79,7 @@ describe Issues::BulkUpdateService, services: true do
end
end
- context 'when the new assignee ID is not present', focus: true do
+ context 'when the new assignee ID is not present' do
let(:assignee_id) { nil }
it 'does not unassign' do