From 4f0785d60f3062642ce6f3358d76c3dd8e87bce6 Mon Sep 17 00:00:00 2001 From: Hernan Zalazar Date: Mon, 1 Jun 2015 15:39:34 -0300 Subject: [PATCH] Fix build --- spec/integration/lib/auth0/api/v2/api_clients_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/integration/lib/auth0/api/v2/api_clients_spec.rb b/spec/integration/lib/auth0/api/v2/api_clients_spec.rb index 889fcf8a..a7e9ba8b 100644 --- a/spec/integration/lib/auth0/api/v2/api_clients_spec.rb +++ b/spec/integration/lib/auth0/api/v2/api_clients_spec.rb @@ -7,9 +7,9 @@ it { expect(client.clients).to_not be_empty } - it { expect(client.create_client(client_name, {custom_login_page_off: true})).to include("name" => client_name, "custom_login_page_off" => true) } + it { expect(client.create_client(client_name, {custom_login_page_on: false})).to include("name" => client_name, "custom_login_page_on" => false) } - it { expect(client.patch_client(existing_client["client_id"], {custom_login_page_off: true, sso: true})).to include("custom_login_page_off" => true, "sso" => true) } + it { expect(client.patch_client(existing_client["client_id"], {custom_login_page_on: false, sso: true})).to include("custom_login_page_on" => false, "sso" => true) } it { expect { client.delete_client(existing_client["client_id"]) }.to_not raise_error }