Skip to content

Commit

Permalink
Remove extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pitbulk committed May 2, 2018
1 parent 1b2a413 commit 12948aa
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/src/OneLogin/Saml2/SettingsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -446,49 +446,49 @@ public function testGetSPMetadataWithX509CertNewDataProvider()
{
return [
'settings do not require encryption' => [
'alwaysIncludeEncryption' => false,
'alwaysIncludeEncryption' => false,
'wantNameIdEncrypted' => false,
'wantAssertionsEncrypted' => false,
'expectEncryptionKeyDescriptor' => false,
],
'wantNameIdEncrypted setting enabled' => [
'alwaysIncludeEncryption' => false,
'alwaysIncludeEncryption' => false,
'wantNameIdEncrypted' => true,
'wantAssertionsEncrypted' => false,
'expectEncryptionKeyDescriptor' => true,
],
'wantAssertionsEncrypted setting enabled' => [
'alwaysIncludeEncryption' => false,
'alwaysIncludeEncryption' => false,
'wantNameIdEncrypted' => false,
'wantAssertionsEncrypted' => true,
'expectEncryptionKeyDescriptor' => true,
],
'both settings enabled'=> [
'alwaysIncludeEncryption' => false,
'alwaysIncludeEncryption' => false,
'wantNameIdEncrypted' => true,
'wantAssertionsEncrypted' => true,
'expectEncryptionKeyDescriptor' => true,
],
'metadata requested with encryption' => [
'alwaysIncludeEncryption' => true,
'alwaysIncludeEncryption' => true,
'wantNameIdEncrypted' => false,
'wantAssertionsEncrypted' => false,
'expectEncryptionKeyDescriptor' => true,
],
'metadata requested with encryption and wantNameIdEncrypted setting enabled' => [
'alwaysIncludeEncryption' => true,
'metadata requested with encryption and wantNameIdEncrypted setting enabled' => [
'alwaysIncludeEncryption' => true,
'wantNameIdEncrypted' => true,
'wantAssertionsEncrypted' => false,
'expectEncryptionKeyDescriptor' => true,
],
'metadata requested with encryption and wantAssertionsEncrypted setting enabled' => [
'alwaysIncludeEncryption' => true,
'alwaysIncludeEncryption' => true,
'wantNameIdEncrypted' => false,
'wantAssertionsEncrypted' => true,
'expectEncryptionKeyDescriptor' => true,
],
'metadata requested with encryption and both settings enabled' => [
'alwaysIncludeEncryption' => true,
'alwaysIncludeEncryption' => true,
'wantNameIdEncrypted' => true,
'wantAssertionsEncrypted' => true,
'expectEncryptionKeyDescriptor' => true,
Expand Down

0 comments on commit 12948aa

Please sign in to comment.