From 82a5c5460508c87c38e0953e8295ca3730ea7c4d Mon Sep 17 00:00:00 2001 From: Thomas Perrot Date: Tue, 5 May 2026 18:30:20 +0200 Subject: [PATCH] t: fix query_py and web_py paths after elixir/ restructure query.py and web.py were moved from the project root and http/ into the elixir/ package directory, but the find_program() calls in TestEnvironment.pm were not updated to follow. Signed-off-by: Thomas Perrot --- t/TestEnvironment.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/TestEnvironment.pm b/t/TestEnvironment.pm index 20d204d..6af6d40 100644 --- a/t/TestEnvironment.pm +++ b/t/TestEnvironment.pm @@ -96,13 +96,13 @@ has script_sh => ( default => sub { find_program('script.sh') } ); has query_py => ( - default => sub { find_program('query.py') } + default => sub { find_program('elixir', 'query.py') } ); has update_py => ( default => sub { find_program('update.py') } ); has web_py => ( - default => sub { find_program(qw(http web.py)) } + default => sub { find_program('elixir', 'web.py') } ); has find_doc => ( default => sub { find_program('find-file-doc-comments.pl') }