Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 41d8284

Browse files
committed
Tests: formatting
1 parent b4fb921 commit 41d8284

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

tests/CertificateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function emptyStringsDataProvider(): array
5656
'
5757
',
5858
],
59-
'many spaces' => [' '],
59+
'many spaces' => [' '],
6060
];
6161
}
6262
}

tests/Command/UpdateCertificatesCommandEndToEndTest.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use Psr\Http\Message\ResponseInterface;
1414
use Symfony\Component\Console\Tester\CommandTester;
1515

16-
1716
/**
1817
* End to end functional test.
1918
*
@@ -78,8 +77,8 @@ public function certificateIsCreatedSuccessfullyForOneDomain(): void
7877

7978
// Cert values match fixtures
8079
$expectedParams = [
81-
'cert' => "foo\n",
82-
'key' => "bar\n",
80+
'cert' => "foo\n",
81+
'key' => "bar\n",
8382
'snis' => ['foo.bar'],
8483
];
8584

@@ -132,8 +131,8 @@ public function stagingCertificateIsCreatedSuccessfullyForTwoDomains(): void
132131

133132
// Cert values match fixtures
134133
$expectedParams = [
135-
'cert' => "foo\n",
136-
'key' => "bar\n",
134+
'cert' => "foo\n",
135+
'key' => "bar\n",
137136
'snis' => [
138137
'foo.bar',
139138
'lalala.com',

tests/Command/UpdateCertificatesCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public function executeFailsOnInvalidListOfDomains(string $domains, string $expe
299299
public function invalidListOfDomains(): array
300300
{
301301
return [
302-
'empty string' => ['', 'Empty list of domains given'],
302+
'empty string' => ['', 'Empty list of domains given'],
303303
'comma separated spaces' => [' ,', 'Empty list of domains given'],
304304
];
305305
}

0 commit comments

Comments
 (0)