Completed
Pull Request — master (#9)
by Mark
02:06
created
_test/syntax.test.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
         dbglog(scandir(DOKU_TMP_DATA.'pages/'),"Pages dir (before test)");
39 39
     }
40 40
 
41
-   function setUp() {
42
-	    global $conf;
41
+    function setUp() {
42
+        global $conf;
43 43
         //$this->pluginsEnabled[] = 'backlinks';
44 44
         parent::setUp();
45 45
 
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
         print_r(idx_lookup($query));
85 85
 
86 86
         $this->assertEquals(
87
-                 array('Ross' => array('link' => 1)),
88
-                 idx_lookup($query)
87
+                    array('Ross' => array('link' => 1)),
88
+                    idx_lookup($query)
89 89
         );
90 90
 
91 91
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             strpos($response->getContent(), 'A link to Bob Ross') !== false,
108 108
             'A link to Bob Ross was not in the output'
109 109
         );
110
-     }
110
+        }
111 111
 
112 112
     public function testStoryPage() {
113 113
         $request = new TestRequest();
@@ -138,6 +138,6 @@  discard block
 block discarded – undo
138 138
 
139 139
         dbglog(pq($wikilink->contents()[0], $doc),"wikilink[0]");
140 140
         $this->assertEquals($wikilink->contents()[3],'A link to Bob Ross',
141
-                           'The last backlink should be a link to Bob Ross');
141
+                            'The last backlink should be a link to Bob Ross');
142 142
     }
143 143
 }
Please login to merge, or discard this patch.