Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
hzalaz committed Jun 1, 2015
1 parent 2c4c33a commit 4f0785d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/integration/lib/auth0/api/v2/api_clients_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down

0 comments on commit 4f0785d

Please sign in to comment.