summaryrefslogtreecommitdiff
path: root/_test/tests/test/basic.test.php
diff options
context:
space:
mode:
Diffstat (limited to '_test/tests/test/basic.test.php')
-rw-r--r--_test/tests/test/basic.test.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/_test/tests/test/basic.test.php b/_test/tests/test/basic.test.php
index ca788a91d..b4926d2ba 100644
--- a/_test/tests/test/basic.test.php
+++ b/_test/tests/test/basic.test.php
@@ -4,19 +4,19 @@
* @group integration
*/
class InttestsBasicTest extends DokuWikiTest {
- /**
- * Execute the simplest possible request and expect
- * a dokuwiki page which obviously has the word "DokuWiki"
- * in it somewhere.
- */
- function testSimpleRun() {
- $request = new TestRequest();
+ /**
+ * Execute the simplest possible request and expect
+ * a dokuwiki page which obviously has the word "DokuWiki"
+ * in it somewhere.
+ */
+ function testSimpleRun() {
+ $request = new TestRequest();
- $response = $request->execute();
+ $response = $request->execute();
- $this->assertTrue(
- strpos($response->getContent(), 'DokuWiki') >= 0,
- 'DokuWiki was not a word in the output'
- );
- }
+ $this->assertTrue(
+ strpos($response->getContent(), 'DokuWiki') >= 0,
+ 'DokuWiki was not a word in the output'
+ );
+ }
}