File: Use-installed-script-for-CI.patch

package info (click to toggle)
php-league-html-to-markdown 5.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 468 kB
  • sloc: php: 1,641; makefile: 20; xml: 15; sh: 5
file content (21 lines) | stat: -rw-r--r-- 597 bytes parent folder | download | duplicates (3)
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');
     }
 
     /**