From 9f73ede4ebd8e2f21fd5010432aa1525887d6a26 Mon Sep 17 00:00:00 2001 From: Nate Coraor Date: Tue, 6 Feb 2024 13:40:52 -0500 Subject: [PATCH] Remove trailing slash from prefix for galaxyproject/galaxy#17428 --- tests/test_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_operations.py b/tests/test_operations.py index 0a65c46..3b6b48a 100644 --- a/tests/test_operations.py +++ b/tests/test_operations.py @@ -203,7 +203,7 @@ def test_cmd_restart_with_update(state_dir, galaxy_yml, startup_config, free_por assert result.exit_code == 0, result.output start_instance(state_dir, galaxy_yml, free_port) # change prefix - prefix = '/galaxypf/' + prefix = '/galaxypf' startup_config['galaxy']['galaxy_url_prefix'] = prefix galaxy_yml.write(json.dumps(startup_config)) result = runner.invoke(galaxyctl, ['--config-file', str(galaxy_yml), 'restart'])