Skip to content

Commit c393f9a

Browse files
chao-xianhannahkc
andcommitted
Remove mis-use of single quote
Co-authored-by: Hannah Content <hannah.cooper@digital.cabinet-office.gov.uk>
1 parent 06162ea commit c393f9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ en:
441441
group_name_label: Current group
442442
placeholder: Select a group
443443
update:
444-
success: "'%{form_name}' has been moved to '%{receiving_group_name}'"
444+
success: "%{form_name}has been moved to %{receiving_group_name}"
445445
group_members:
446446
create:
447447
success: "%{user_name} has been added to this group and we’ve sent them an email to let them know"

spec/features/group_form/move_form_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def when_i_change_the_group
8181
end
8282

8383
def then_i_see_the_form_is_gone_from_my_group
84-
expect(page).to have_content("'#{form.name}' has been moved to '#{another_group.name}'")
84+
expect(page).to have_content("#{form.name} has been moved to #{another_group.name}")
8585
expect(page).to have_css("h1", text: group.name)
8686
expect(page).not_to have_css(".govuk-table", text: form.name)
8787
end

0 commit comments

Comments
 (0)