From: Stefano Rivera <stefanor@debian.org>
Date: Thu, 14 Apr 2022 17:25:39 -0400
Subject: Run test_commandline against installed programs

Don't assume that we're running in the source tree.

Forwarded: not-needed
---
 tests/test_commandline.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_commandline.py b/tests/test_commandline.py
index f905c06..0c056d8 100644
--- a/tests/test_commandline.py
+++ b/tests/test_commandline.py
@@ -24,8 +24,8 @@ from .common import PYTHON_PREFIX
 
 linkheader_modules = aiocoap.defaults.linkheader_missing_modules()
 
-AIOCOAP_CLIENT = PYTHON_PREFIX + ['./aiocoap-client']
-AIOCOAP_RD = PYTHON_PREFIX + ['./aiocoap-rd']
+AIOCOAP_CLIENT = ['aiocoap-client']
+AIOCOAP_RD = ['aiocoap-rd']
 
 class TestCommandlineClient(WithTestServer):
     @no_warnings
