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 15:10:31 -1000
Subject: Use installed script for CI
---
tests/BinTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/BinTest.php b/tests/BinTest.php
index eda4a90..e28559c 100644
--- a/tests/BinTest.php
+++ b/tests/BinTest.php
@@ -93,7 +93,7 @@ class BinTest extends TestCase
*/
protected function getPathToCommonmark(): string
{
- return \realpath(__DIR__ . '/../bin/html-to-markdown');
+ return \realpath('/usr/bin/html-to-markdown');
}
/**
|