diff --git a/tests/end_to_end_tests.py b/tests/end_to_end_tests.py index 712c29c..eb8b2b9 100644 --- a/tests/end_to_end_tests.py +++ b/tests/end_to_end_tests.py @@ -67,7 +67,7 @@ def test_end_to_end_rtsp(self): with tempfile.TemporaryDirectory() as outdir: print("Setting up end to end test for RTSP") subprocess.run("yum install -y wget compat-openssl10", shell=True, check=True) - rtsp_server = subprocess.Popen("bin/live555MediaServer") + rtsp_server = subprocess.Popen(os.path.join(PROJECT_ROOT, "tools/live555MediaServer")) try: time.sleep(1) print("Running extraction for RTSP stream") diff --git a/bin/live555MediaServer b/tools/live555MediaServer similarity index 100% rename from bin/live555MediaServer rename to tools/live555MediaServer