1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Fri, 15 Nov 2019 16:13:29 -1000
Subject: Use installed script for CI
---
tests/functional/AbstractBinTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/functional/AbstractBinTest.php b/tests/functional/AbstractBinTest.php
index dc4745e..a655f7c 100644
--- a/tests/functional/AbstractBinTest.php
+++ b/tests/functional/AbstractBinTest.php
@@ -26,7 +26,7 @@ abstract class AbstractBinTest extends TestCase
*/
protected function getPathToCommonmark()
{
- return realpath(__DIR__ . '/../../bin/commonmark');
+ return realpath('/usr/bin/commonmark');
}
/**
|