Completed
Push — master ( 446513...9b2b5e )
by Gordon
14:12 queued 10:56
created
tests/SiteMapTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
 		$response = $this->get('/sitemap/');
15 15
         $this->assertEquals(200, $response->getStatusCode());
16 16
         $body = $response->getBody();
17
-        for ($i=1; $i <= 4; $i++) {
18
-        	$row = '<li class="link"><a href="/page-' . $i . '/" title="Page '
19
-        	. $i . '">Page ' . $i . '</a></li>';
17
+        for ($i = 1; $i <= 4; $i++) {
18
+        	$row = '<li class="link"><a href="/page-'.$i.'/" title="Page '
19
+        	. $i.'">Page '.$i.'</a></li>';
20 20
         	$this->assertContains($row, $body);
21 21
         }
22 22
     }
Please login to merge, or discard this patch.