Skip to content

Commit 94a5832

Browse files
Merge branch 'master' into add-opensearch-container
2 parents d6830cf + 2f67234 commit 94a5832

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcontainers/google/pubsub.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ class PubSubContainer(DockerContainer):
2727
::
2828
2929
def test_docker_run_pubsub():
30-
config = PubSubContainer('google/cloud-sdk:latest')
30+
config = PubSubContainer('google/cloud-sdk:emulators')
3131
with config as pubsub:
3232
publisher = pubsub.get_publisher()
3333
topic_path = publisher.topic_path(pubsub.project, "my-topic")
3434
topic = publisher.create_topic(topic_path)
3535
"""
3636

37-
def __init__(self, image="google/cloud-sdk:latest",
37+
def __init__(self, image="google/cloud-sdk:emulators",
3838
project="test-project", port=8432, **kwargs):
3939
super(PubSubContainer, self).__init__(image=image, **kwargs)
4040
self.project = project

0 commit comments

Comments
 (0)