Skip to content

Commit

Permalink
fix black on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tansito committed Dec 26, 2024
1 parent 8a53989 commit 64720ee
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/docker/test_docker_experimental.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ def test_list_upload_download_delete(self, serverless_client: ServerlessClient):

assert (file_count - len(files)) == 1

def test_list_upload_download_delete_with_provider_function(self, serverless_client: ServerlessClient):
def test_list_upload_download_delete_with_provider_function(
self, serverless_client: ServerlessClient
):
"""Integration test for upload files."""
function = QiskitFunction(
title="provider-function",
Expand Down Expand Up @@ -154,7 +156,9 @@ def test_list_upload_download_delete_with_provider_function(self, serverless_cli

assert (file_count - len(files)) == 1

def test_provider_list_upload_download_delete(self, serverless_client: ServerlessClient):
def test_provider_list_upload_download_delete(
self, serverless_client: ServerlessClient
):
"""Integration test for upload files."""
function = QiskitFunction(
title="provider-function",
Expand Down Expand Up @@ -194,4 +198,4 @@ def test_provider_list_upload_download_delete(self, serverless_client: Serverles
files = serverless_client.provider_files(function)
print(files)

assert (file_count - len(files)) == 1
assert (file_count - len(files)) == 1

0 comments on commit 64720ee

Please sign in to comment.