diff --git a/spec/helpers/auth_helper_spec.rb b/spec/helpers/auth_helper_spec.rb
index e6af074a780e1d97bc66a3320853c72e5d11cb93..04b5128279519ae55341bb371704877876b52283 100644
--- a/spec/helpers/auth_helper_spec.rb
+++ b/spec/helpers/auth_helper_spec.rb
@@ -16,7 +16,9 @@ describe AuthHelper do
       allow(helper).to receive(:auth_providers) { [] }
       expect(helper.button_based_providers).to eq([])
     end
+  end
 
+  describe 'enabled_button_based_providers' do
     it 'returns all the enabled providers from settings' do
       allow(helper).to receive(:auth_providers) { [:twitter, :github] }
       expect(helper.enabled_button_based_providers).to include(*['twitter', 'github'])