spec/graphql/query/identity_provider_spec.rb in osso-0.0.5.pre.zeta vs spec/graphql/query/identity_provider_spec.rb in osso-0.0.5

- old
+ new

@@ -6,16 +6,17 @@ describe 'Identity Provider' do let(:id) { Faker::Internet.uuid } let(:domain) { Faker::Internet.domain_name } let(:variables) { { id: id } } let(:query) do - <<~GRAPHQL + <<-GRAPHQL query IdentityProvider($id: ID!) { - identityProvider(id: $id) { + identityProvider(id: $id) { id service domain acsUrl + acsUrlValidator ssoCert ssoUrl status } }