Completed
Pull Request — master (#9)
by Mark
02:32
created
_test/syntax.test.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -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.
_test/general.test.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
     public function test_plugin_backlinks_isloaded() {
53 53
         global $plugin_controller;
54 54
         $this->assertTrue(
55
-                     in_array('backlinks', $plugin_controller->getList()),
56
-                     "backlinks plugin is loaded"
57
-                     );
55
+                        in_array('backlinks', $plugin_controller->getList()),
56
+                        "backlinks plugin is loaded"
57
+                        );
58 58
     }
59 59
 }
Please login to merge, or discard this patch.