Completed
Push — develop ( db382d...c52f3e )
by Chris
03:12
created
tests/Xigen/DiffrentTextfileCSRTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,14 +44,14 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function testWithJustSH1()
46 46
     {
47
-        $response = $this->validSHA1 . "\n";
47
+        $response = $this->validSHA1."\n";
48 48
         $test = $this->checkresponse($response);
49 49
         $this->assertFalse($test);
50 50
     }
51 51
 
52 52
     public function testWithSH1AndComdoText()
53 53
     {
54
-        $response = $this->validSHA1 . "\n";
54
+        $response = $this->validSHA1."\n";
55 55
         $response .= "comodoca.com\n";
56 56
         $test = $this->checkresponse($response);
57 57
         $this->assertTrue($test);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     public function testWithSH1AndComdoTextNoTrailingReturn()
61 61
     {
62
-        $response = $this->validSHA1 . "\n";
62
+        $response = $this->validSHA1."\n";
63 63
         $response .= "comodoca.com";
64 64
         $test = $this->checkresponse($response);
65 65
         $this->assertTrue($test);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function testWithSH1AndComdoTextAndNewLine()
69 69
     {
70
-        $response = $this->validSHA1 . "\n";
70
+        $response = $this->validSHA1."\n";
71 71
         $response .= "comodoca.com\n\n";
72 72
         $test = $this->checkresponse($response);
73 73
         $this->assertTrue($test);
Please login to merge, or discard this patch.