diff options
author | Yoan Blanc <yoan@dosimple.ch> | 2016-11-01 18:27:37 +0100 |
---|---|---|
committer | Yoan Blanc <yoan@dosimple.ch> | 2016-11-02 09:27:35 +0100 |
commit | bc21988fe5e6cca8aae6928c0374779fd82710ed (patch) | |
tree | d6677c751e71ae0b8a0ad2e8585d70ed18eb35c1 | |
parent | e3c3e2855422d88d43be9aef098d0e07cfde9c12 (diff) | |
download | parsedown-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.php | 2 |
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); |