From 688285c3748d506cc3947a7dfca2e8e1fee16de1 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Tue, 11 Apr 2023 12:12:52 +1000 Subject: [PATCH] Remove loading of unused spec helpers We have only one feature spec left and it's loading the system_helper instead of the spec_helper. These lines were dead code. --- spec/spec_helper.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 85d53dfb9d..7edf6d8551 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -40,6 +40,4 @@ RSpec.configure do |config| config.include Devise::Test::ControllerHelpers, type: :controller config.include OpenFoodNetwork::ApiHelper, type: :controller config.include OpenFoodNetwork::ControllerHelper, type: :controller - config.include Features::DatepickerHelper, type: :feature - config.include DownloadsHelper, type: :feature end