Skip to content

Commit e2cc996

Browse files
committed
Fix incorrect port unpacking.
1 parent 76a9bfa commit e2cc996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azurite/testcontainers/azurite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(self, image: str = "mcr.microsoft.com/azure-storage/azurite:latest"
6363
self.queue_service_port = queue_service_port
6464
self.table_service_port = table_service_port
6565

66-
self.with_exposed_ports(*blob_service_port, queue_service_port, table_service_port)
66+
self.with_exposed_ports(blob_service_port, queue_service_port, table_service_port)
6767
self.with_env("AZURITE_ACCOUNTS", f"{self.account_name}:{self.account_key}")
6868

6969
def get_connection_string(self) -> str:

0 commit comments

Comments
 (0)