Skip to content

Commit

Permalink
address (existing) lint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
aronatkins committed Jan 18, 2024
1 parent 2bca9a9 commit 1d23067
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_main_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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"},
)
Expand Down

0 comments on commit 1d23067

Please sign in to comment.