From e21eb9d02c9df603552712159157d70fc2d63428 Mon Sep 17 00:00:00 2001 From: rgarcia Date: Fri, 18 Nov 2016 20:30:26 +0100 Subject: [PATCH] fixes admin poll question show spec --- spec/features/admin/poll/questions_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/features/admin/poll/questions_spec.rb b/spec/features/admin/poll/questions_spec.rb index ffb128edd..5be3db193 100644 --- a/spec/features/admin/poll/questions_spec.rb +++ b/spec/features/admin/poll/questions_spec.rb @@ -26,7 +26,7 @@ feature 'Admin enquiries' do expect(page).to have_content(question.description) expect(page).to have_content(question.summary) expect(page).to have_content(question.author.name) - expect(page).to have_content(question.valid_answers.join(", ")) + expect(page).to have_content(question.valid_answers.join(" ")) expect(page).to have_content(geozone.name) end