From bc21988fe5e6cca8aae6928c0374779fd82710ed Mon Sep 17 00:00:00 2001 From: Yoan Blanc Date: Tue, 1 Nov 2016 18:27:37 +0100 Subject: [PATCH] Fix include from ParsedownTest I wasn't able to run all the tests from ParsedownExtra because of it. --- test/ParsedownTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);