We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b46bd commit 82fe5f1Copy full SHA for 82fe5f1
sdk/python/tests/integration/feature_repos/universal/online_store/cassandra.py
@@ -28,9 +28,7 @@
28
class CassandraOnlineStoreCreator(OnlineStoreCreator):
29
def __init__(self, project_name: str, **kwargs):
30
super().__init__(project_name)
31
- self.container = CassandraContainer("cassandra:4.1.4").with_exposed_ports(
32
- 9042
33
- )
+ self.container = CassandraContainer("cassandra:4.1.4").with_exposed_ports(9042)
34
35
def create_online_store(self) -> Dict[str, object]:
36
self.container.start()
0 commit comments