From d78fd6df0c21f56887d1ca76cb5a40c16d3552b0 Mon Sep 17 00:00:00 2001 From: Alfredo Sumaran Date: Mon, 23 May 2016 12:02:53 -0500 Subject: Update CHANGELOG --- CHANGELOG | 1 + spec/features/issues/update_issues_spec.rb | 2 +- spec/services/issues/bulk_update_service_spec.rb | 2 +- 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 -- cgit v1.2.1