DEV: Correct test from 9c1c8b45

This commit is contained in:
David Taylor 2019-07-24 11:45:36 +01:00
parent b084d6c8df
commit 864f68725a
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ RSpec.describe Users::OmniauthCallbacksController do
expect(response.redirect_url).to start_with("http://test.localhost/associate/")
expect(session[:current_user_id]).to eq(user.id)
expect(UserAssociatedAccount.count).to eq(0) # Reconnect has not yet happened
expect(UserAssociatedAccount.count).to eq(1) # Reconnect has not yet happened
end
end