summaryrefslogtreecommitdiff
path: root/test/integration
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-12 16:44:01 -0600
committermo khan <mo@mokhan.ca>2025-05-12 16:44:01 -0600
commit32e212fb891d522efa4990bc525a51326bd7e4ba (patch)
treeac745baad65b0a620797ff548016e82532474301 /test/integration
parent9060c10bfdee64db62e124bc13e8a5c9595b75bf (diff)
test: increase startup timeout
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/container_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/container_test.go b/test/integration/container_test.go
index ae9ae84..fcf2752 100644
--- a/test/integration/container_test.go
+++ b/test/integration/container_test.go
@@ -54,7 +54,7 @@ func TestContainer(t *testing.T) {
}),
testcontainers.WithExposedPorts("8080/tcp", "9901/tcp", "10000/tcp"),
testcontainers.WithLogConsumers(&TestLogConsumer{t: t}),
- testcontainers.WithWaitStrategy(wait.ForLog("Listening on").WithStartupTimeout(time.Second*5)),
+ testcontainers.WithWaitStrategy(wait.ForLog("Listening on").WithStartupTimeout(10*time.Second)),
)
require.NoError(t, err)