diff --git a/app/assets/stylesheets/include/icons.scss b/app/assets/stylesheets/include/icons.scss
index 001bc336..3141837b 100644
--- a/app/assets/stylesheets/include/icons.scss
+++ b/app/assets/stylesheets/include/icons.scss
@@ -1,2 +1 @@
-@import "font-awesome-sprockets";
@import "font-awesome";
diff --git a/test/helpers/icon_helper_test.rb b/test/helpers/icon_helper_test.rb
index 90eaf3f4..8a40742a 100644
--- a/test/helpers/icon_helper_test.rb
+++ b/test/helpers/icon_helper_test.rb
@@ -4,10 +4,10 @@ class IconHelperTest < ActionView::TestCase
include IconHelper
test 'icon_fw generates fixed-width class' do
- assert_equal '', icon_fw('fas', 'gear')
+ assert_equal '', icon_fw('fas', 'gear')
end
test 'icon_fw accepts an additional class' do
- assert_equal '', icon_fw('fas', 'gear', class: 'myclass')
+ assert_equal '', icon_fw('fas', 'gear', class: 'myclass')
end
end