summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoan Blanc <yoan@dosimple.ch>2016-11-01 18:27:37 +0100
committerYoan Blanc <yoan@dosimple.ch>2016-11-02 09:27:35 +0100
commitbc21988fe5e6cca8aae6928c0374779fd82710ed (patch)
treed6677c751e71ae0b8a0ad2e8585d70ed18eb35c1
parente3c3e2855422d88d43be9aef098d0e07cfde9c12 (diff)
downloadparsedown-bc21988fe5e6cca8aae6928c0374779fd82710ed.zip
parsedown-bc21988fe5e6cca8aae6928c0374779fd82710ed.tar.gz
parsedown-bc21988fe5e6cca8aae6928c0374779fd82710ed.tar.bz2
Fix include from ParsedownTest
I wasn't able to run all the tests from ParsedownExtra because of it.
-rw-r--r--test/ParsedownTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ParsedownTest.php b/test/ParsedownTest.php
index c922ab1..323dace 100644
--- a/test/ParsedownTest.php
+++ b/test/ParsedownTest.php
@@ -139,7 +139,7 @@ EXPECTED_HTML;
public function testLateStaticBinding()
{
- include 'test/TestParsedown.php';
+ include __DIR__ . '/TestParsedown.php';
$parsedown = Parsedown::instance();
$this->assertInstanceOf('Parsedown', $parsedown);