From 9772d9808667592fc4c3b5c3be695e4f53fedf1a Mon Sep 17 00:00:00 2001 From: Yibei Chen Date: Mon, 8 Jan 2024 20:49:02 +0000 Subject: [PATCH] remove useless assertation --- reproschema/tests/test_reproschema2redcap.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/reproschema/tests/test_reproschema2redcap.py b/reproschema/tests/test_reproschema2redcap.py index f8438ac..c946c9b 100644 --- a/reproschema/tests/test_reproschema2redcap.py +++ b/reproschema/tests/test_reproschema2redcap.py @@ -30,11 +30,7 @@ def test_reproschema2redcap_success(): # Assert the expected outcomes assert result.exit_code == 0 - assert ( - f"Converted reproschema JSON from {input_path} to Redcap CSV at {output_csv_path}" - in result.output - ) - + # Check if the output CSV file has been created assert os.path.exists(output_csv_path)