Fix hound warnings

This commit is contained in:
decabeza
2019-01-31 17:23:45 +01:00
parent 6bb3c0a3da
commit 64cbed838a
3 changed files with 33 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
require 'rails_helper'
require "rails_helper"
feature 'Cards' do
feature "Cards" do
background do
admin = create(:administrator).user
@@ -232,8 +232,8 @@ feature 'Cards' do
image_input = all(".image").last.find("input[type=file]", visible: false)
attach_file(
image_input[:id],
Rails.root.join('spec/fixtures/files/clippy.jpg'),
Rails.root.join("spec/fixtures/files/clippy.jpg"),
make_visible: true)
expect(page).to have_field('widget_card_image_attributes_title', with: "clippy.jpg")
expect(page).to have_field("widget_card_image_attributes_title", with: "clippy.jpg")
end
end