From 24cf6b9f62a312c010c9479fd6155f7c72099979 Mon Sep 17 00:00:00 2001
From: Patricio Cano <suprnova32@gmail.com>
Date: Mon, 11 Jul 2016 12:41:02 -0500
Subject: [PATCH] Refactor `mock_auth_hash`

---
 spec/support/login_helpers.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spec/support/login_helpers.rb b/spec/support/login_helpers.rb
index 2e400dd825a..ba08733e48d 100644
--- a/spec/support/login_helpers.rb
+++ b/spec/support/login_helpers.rb
@@ -39,7 +39,6 @@ module LoginHelpers
 
   def login_via(provider, user, uid)
     mock_auth_hash(provider, uid, user.email)
-    Rails.application.env_config['omniauth.auth'] = OmniAuth.config.mock_auth[:saml]
     visit new_user_session_path
     click_link provider
   end
@@ -69,6 +68,7 @@ module LoginHelpers
         }
       }
     })
+    Rails.application.env_config['omniauth.auth'] = OmniAuth.config.mock_auth[:saml]
   end
 
   # Requires Javascript driver.
-- 
GitLab