From 1d230670d26f5982cb7fec41b89e9ef9c3616f88 Mon Sep 17 00:00:00 2001 From: Aron Atkins Date: Tue, 16 Jan 2024 15:40:11 -0500 Subject: [PATCH] address (existing) lint failures --- tests/test_main_content.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_main_content.py b/tests/test_main_content.py index 8f380c5f..9ccb895f 100644 --- a/tests/test_main_content.py +++ b/tests/test_main_content.py @@ -19,7 +19,7 @@ # For some reason setup and teardown aren't enough to fully reset the state # between tests. Overriding the env var CONNECT_CONTENT_BUILD_DIR to be a tempdir # would be preferable but this is fine for now. -TEMP_DIR="rsconnect-build-test" +TEMP_DIR = "rsconnect-build-test" def register_uris(connect_server: str): def register_content_endpoints(i: int, guid: str): @@ -39,8 +39,8 @@ def register_content_endpoints(i: int, guid: str): httpretty.GET, f"{connect_server}/__api__/applications/{guid}/config", body='{' + - f'"config_url": "{connect_server}/connect/#/apps/{guid}",' + - f'"logs_url": "{connect_server}/connect/#/apps/{guid}"' + + f'"config_url": "{connect_server}/connect/#/apps/{guid}",' + + f'"logs_url": "{connect_server}/connect/#/apps/{guid}"' + '}', adding_headers={"Content-Type": "application/json"}, )