From e1577151f12b10190c8d0b818c779b1345cac729 Mon Sep 17 00:00:00 2001 From: Bernhard Mallinger Date: Tue, 16 Apr 2024 12:16:26 +0200 Subject: [PATCH] Fix formatting --- tests/test_image_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_image_processor.py b/tests/test_image_processor.py index c63acce..5aea679 100644 --- a/tests/test_image_processor.py +++ b/tests/test_image_processor.py @@ -110,7 +110,7 @@ def test_command_is_combined_with_results_dir_setup( **create_pod_kwargs_with({"result_data_directory": "my-run-r0000"}) ) - command = spec.pod_spec.containers[0].command + command = spec.pod_spec.containers[0].command assert command[0] == "bash" assert command[3].endswith("&& true") assert 'mkdir "/full-results-pvc/my-run-r0000";' in command[3]