Completed
Pull Request — master (#9)
by Mark
02:04
created
_test/syntax.test.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         dbglog(scandir(DOKU_TMP_DATA.'pages/'),"Pages dir (before test)");
39 39
     }
40 40
 
41
-   function setUp() {
41
+    function setUp() {
42 42
         $this->pluginsEnabled[] = 'backlinks';
43 43
         parent::setUp();
44 44
 
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
         print_r(idx_lookup($query));
78 78
 
79 79
         $this->assertEquals(
80
-                 array('Ross' => array('link' => 1)),
81
-                 idx_lookup($query)
80
+                    array('Ross' => array('link' => 1)),
81
+                    idx_lookup($query)
82 82
         );
83 83
 
84 84
     }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             strpos($response->getContent(), 'A link to Bob Ross') !== false,
101 101
             'A link to Bob Ross was not in the output'
102 102
         );
103
-     }
103
+        }
104 104
 
105 105
     public function testStoryPage() {
106 106
         $request = new TestRequest();
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
         dbglog(pq($wikilink->contents()[0], $doc),"wikilink[0]");
123 123
         $this->assertEquals($wikilink->contents()[3],'A link to Bob Ross',
124
-                           'The last backlink should be a link to Bob Ross');
124
+                            'The last backlink should be a link to Bob Ross');
125 125
     }
126 126
 
127 127
     public function testBacklinks() {
@@ -143,6 +143,6 @@  discard block
 block discarded – undo
143 143
 
144 144
         dbglog(pq($wikilink->contents()[0], $doc),"wikilink[0]");
145 145
         $this->assertEquals($wikilink->contents()[3],'A link to Bob Ross',
146
-                           'The last backlink should be a link to Bob Ross');
146
+                            'The last backlink should be a link to Bob Ross');
147 147
     }
148 148
 }
Please login to merge, or discard this patch.