From 454120fb02b766938ffb02a4ee9a264bf3f3a785 Mon Sep 17 00:00:00 2001 From: Carlos Palhares Date: Thu, 12 Dec 2024 16:56:16 -0300 Subject: [PATCH] Tests --- audiences/spec/controllers/scim_proxy_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audiences/spec/controllers/scim_proxy_controller_spec.rb b/audiences/spec/controllers/scim_proxy_controller_spec.rb index 3ec2ee97..f61e2bd8 100644 --- a/audiences/spec/controllers/scim_proxy_controller_spec.rb +++ b/audiences/spec/controllers/scim_proxy_controller_spec.rb @@ -55,7 +55,7 @@ it "only fetches less sensitive attributes" do expect(resource_query).to( receive(:query) - .with(hash_including(attributes: %w[id externalId displayName photos])) + .with(hash_including(attributes: "id,externalId,displayName,photos")) .and_return({ "response" => "body" }) )