Skip to content

Commit 1d23067

Browse files
committed
address (existing) lint failures
1 parent 2bca9a9 commit 1d23067

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_main_content.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# For some reason setup and teardown aren't enough to fully reset the state
2020
# between tests. Overriding the env var CONNECT_CONTENT_BUILD_DIR to be a tempdir
2121
# would be preferable but this is fine for now.
22-
TEMP_DIR="rsconnect-build-test"
22+
TEMP_DIR = "rsconnect-build-test"
2323

2424
def register_uris(connect_server: str):
2525
def register_content_endpoints(i: int, guid: str):
@@ -39,8 +39,8 @@ def register_content_endpoints(i: int, guid: str):
3939
httpretty.GET,
4040
f"{connect_server}/__api__/applications/{guid}/config",
4141
body='{' +
42-
f'"config_url": "{connect_server}/connect/#/apps/{guid}",' +
43-
f'"logs_url": "{connect_server}/connect/#/apps/{guid}"' +
42+
f'"config_url": "{connect_server}/connect/#/apps/{guid}",' +
43+
f'"logs_url": "{connect_server}/connect/#/apps/{guid}"' +
4444
'}',
4545
adding_headers={"Content-Type": "application/json"},
4646
)

0 commit comments

Comments
 (0)