From a4879c929c943be3a2115a35959efec6bfa4fa93 Mon Sep 17 00:00:00 2001 From: Christophe HENRY Date: Mon, 1 Aug 2022 15:55:30 +0200 Subject: [PATCH] Fixes an error in include path for a test command --- tests/cli/parse_gemtext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/parse_gemtext.php b/tests/cli/parse_gemtext.php index 9d601f7..5ff882d 100644 --- a/tests/cli/parse_gemtext.php +++ b/tests/cli/parse_gemtext.php @@ -2,7 +2,7 @@ $fileName = $argv[1]; -require_once dirname(__FILE__)."/../lib-htmgem.inc.php"; +require_once dirname(__FILE__)."/../../lib-htmgem.inc.php"; $text = file_get_contents($fileName); $parsedGemtext = \htmgem\gemtextParser($text);