From b9fba41c6fd62e88a042a31c81df2ce371e7475c Mon Sep 17 00:00:00 2001 From: DrTVockerodtMO Date: Mon, 21 Oct 2024 14:22:25 +0100 Subject: [PATCH] Fixed more pylinting... --- src/psyclone/tests/psyad/tl2ad_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/psyclone/tests/psyad/tl2ad_test.py b/src/psyclone/tests/psyad/tl2ad_test.py index e463e4bd03..0b3cb2cc7a 100644 --- a/src/psyclone/tests/psyad/tl2ad_test.py +++ b/src/psyclone/tests/psyad/tl2ad_test.py @@ -138,10 +138,10 @@ def test_generate_adjoint_str_lfric_api(): with open(testkern, mode="r", encoding="utf-8") as kfile: tl_code = kfile.read() result, test_result = generate_adjoint_str(tl_code, - ["xi", "u", "res_dot_product", "curl_u"], - api="lfric", - create_test=True, - test_filename="atlt_testkern_mod.X90") + ["xi", "u", "res_dot_product", "curl_u"], + api="lfric", + create_test=True, + test_filename="atlt_testkern_mod.X90") assert "subroutine adj_testkern_code" in result.lower() assert "module atlt_testkern_mod" in test_result.lower() assert "subroutine atlt_testkern" in test_result.lower()