Skip to content

Commit c68d532

Browse files
committed
Fix duplicate dict key literal (ruff F601)
Signed-off-by: Aarni Koskela <akx@iki.fi>
1 parent a9a3775 commit c68d532

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/unit/fake_api.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,6 @@ def get_fake_image_history():
111111
return status_code, response
112112

113113

114-
def post_fake_import_image():
115-
status_code = 200
116-
response = 'Import messages...'
117-
118-
return status_code, response
119-
120-
121114
def get_fake_containers():
122115
status_code = 200
123116
response = [{
@@ -542,8 +535,6 @@ def post_fake_secret():
542535
get_fake_images,
543536
f'{prefix}/{CURRENT_VERSION}/images/test_image/history':
544537
get_fake_image_history,
545-
f'{prefix}/{CURRENT_VERSION}/images/create':
546-
post_fake_import_image,
547538
f'{prefix}/{CURRENT_VERSION}/containers/json':
548539
get_fake_containers,
549540
f'{prefix}/{CURRENT_VERSION}/containers/{FAKE_CONTAINER_ID}/start':

0 commit comments

Comments
 (0)