spec/routes/oauth_spec.rb in osso-0.0.5.pre.lambda vs spec/routes/oauth_spec.rb in osso-0.0.5.pre.theta

- old
+ new

@@ -46,21 +46,20 @@ end end describe 'for an enterprise domain with multiple SAML providers' do it 'renders the multiple providers screen' do - enterprise = create(:enterprise_with_multiple_providers, oauth_client: client) + enterprise = create(:enterprise_with_multiple_providers) get( '/oauth/authorize', domain: enterprise.domain, client_id: client.identifier, response_type: 'code', redirect_uri: client.redirect_uri_values.sample, ) expect(last_response).to be_ok - expect(last_response.body).to eq("MULITPLE PROVIDERS") end end end end