From df915d46f0c044c4d804bc7cc3ee04a7fac1d2a6 Mon Sep 17 00:00:00 2001 From: tmcguinness Date: Wed, 5 Jun 2024 21:36:01 +0000 Subject: [PATCH] removed {} from script string --- ci/scripts/tests/test_setup.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ci/scripts/tests/test_setup.py b/ci/scripts/tests/test_setup.py index e6c191b306..c19be4932c 100755 --- a/ci/scripts/tests/test_setup.py +++ b/ci/scripts/tests/test_setup.py @@ -27,13 +27,8 @@ def test_setup_expt(): def test_setup_xml(): script_content = '''#!/usr/bin/env bash - -output=f"testdata/output.txt" - -rm -f "${output}" -export ACCOUNT={foobar} -export HOMEgfs={foobar} - +export ACCOUNT=foobar +export HOMEgfs=foobar ../../../workflow/setup_xml.py "${1}" ''' with open('run_setup_xml.sh', 'w') as file: