Increase verify timeout in the ZeroMqSupplierConfigurationTests

This commit is contained in:
Artem Bilan
2025-01-06 09:34:23 -05:00
parent 2889674141
commit 11b245e8df

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016-2024 the original author or authors.
* Copyright 2016-2025 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,6 +43,8 @@ import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Daniel Frey
* @author Artem Bilan
*
* @since 3.1.0
*/
@SpringBootTest(properties = { "zeromq.supplier.topics=test-topic" })
@@ -92,7 +94,7 @@ public class ZeroMqSupplierConfigurationTests {
msg.wrap(new ZFrame("test-topic"));
msg.send(socket);
stepVerifier.verify(Duration.ofSeconds(10));
stepVerifier.verify(Duration.ofSeconds(30));
}