@@ -10,19 +10,19 @@ |
||
10 | 10 | |
11 | 11 | final class KeyManagerTest extends TestCase { |
12 | 12 | |
13 | - public function testNewEmptyKeyManager() { |
|
13 | + public function testNewEmptyKeyManager () { |
|
14 | 14 | $mgr = new KeyManager([]); |
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
18 | 18 | * @expectedException MissingServerKeyException |
19 | 19 | */ |
20 | - public function testMissingKeyException() { |
|
20 | + public function testMissingKeyException () { |
|
21 | 21 | $mgr = new KeyManager([]); |
22 | 22 | $mgr->GetServerKey(); |
23 | 23 | } |
24 | 24 | |
25 | - public function testExistingKey() { |
|
25 | + public function testExistingKey () { |
|
26 | 26 | $mgr = new KeyManager([ |
27 | 27 | "key" => "mykey" |
28 | 28 | ]); |
@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | final class ContainerManagerTest extends TestCase { |
12 | 12 | |
13 | - public function testContainerListing() { |
|
13 | + public function testContainerListing () { |
|
14 | 14 | $keymgr = new KeyManager([ |
15 | 15 | "key" => "fQJO9bjlVXnUZv0sCaQA90QsJ0lPvs1o" |
16 | 16 | ]); |