From c37f4a0f469a528c8cda63e8596712fef3b3a7e3 Mon Sep 17 00:00:00 2001 From: David Laine Date: Wed, 21 Aug 2024 11:45:49 -0500 Subject: [PATCH] Fix line too long - take 2. --- cray/tests/test_modules/test_ims.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cray/tests/test_modules/test_ims.py b/cray/tests/test_modules/test_ims.py index e434a10..a180f4d 100644 --- a/cray/tests/test_modules/test_ims.py +++ b/cray/tests/test_modules/test_ims.py @@ -293,8 +293,8 @@ def test_cray_ims_remote_build_nodes_status_describe(cli_runner, rest_mock): assert result.exit_code == 0 data = json.loads(result.output) assert data['method'] == 'GET' - assert data['url'] == f'{config["default"]["hostname"]}/apis/ims/v3/\ - remote-build-nodes/status/foo' + testurl = f'{config["default"]["hostname"]}/apis/ims/v3/remote-build-nodes/status/foo' + assert data['url'] == testurl def test_cray_ims_deleted_public_keys_base(cli_runner, rest_mock):