Change single quotes to double quotes
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
require 'rails_helper'
|
||||
require "rails_helper"
|
||||
|
||||
feature 'Budget Poll Officing' do
|
||||
feature "Budget Poll Officing" do
|
||||
|
||||
scenario 'Show sidebar menu if officer has shifts assigned' do
|
||||
scenario "Show sidebar menu if officer has shifts assigned" do
|
||||
poll = create(:poll)
|
||||
booth = create(:poll_booth)
|
||||
booth_assignment = create(:poll_booth_assignment, poll: poll, booth: booth)
|
||||
@@ -24,7 +24,7 @@ feature 'Budget Poll Officing' do
|
||||
expect(page).to have_content("Total recounts and results")
|
||||
end
|
||||
|
||||
scenario 'Do not show sidebar menu if officer has no shifts assigned' do
|
||||
scenario "Do not show sidebar menu if officer has no shifts assigned" do
|
||||
user = create(:user)
|
||||
officer = create(:poll_officer, user: user)
|
||||
|
||||
@@ -36,4 +36,4 @@ feature 'Budget Poll Officing' do
|
||||
expect(page).not_to have_content("Total recounts and results")
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user