Test Failed
Branch master (26e9bc)
by Bence
01:14
created
tests/KeyManagerTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,19 +10,19 @@
 block discarded – undo
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
         ]);
Please login to merge, or discard this patch.
tests/ContainerManagerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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
         ]);
Please login to merge, or discard this patch.