diff options
author | Emanuil Rusev <hello@erusev.com> | 2016-11-02 17:56:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-02 17:56:58 +0200 |
commit | 20ff8bbb57205368b4b42d094642a3e52dac85fb (patch) | |
tree | d6677c751e71ae0b8a0ad2e8585d70ed18eb35c1 | |
parent | e3c3e2855422d88d43be9aef098d0e07cfde9c12 (diff) | |
parent | bc21988fe5e6cca8aae6928c0374779fd82710ed (diff) | |
download | parsedown-origin/master.zip parsedown-origin/master.tar.gz parsedown-origin/master.tar.bz2 |
Merge pull request #447 from greut/phpunit-from-extraHEAD1.6.1origin/masterorigin/HEADmaster
Fix include from ParsedownTest
-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); |