Skip to content

Commit 21cf4f9

Browse files
committed
Refs #22506. Fix AsymmeticIgnoreParticipantFlags test.
Signed-off-by: Miguel Company <[email protected]>
1 parent e9ce4d8 commit 21cf4f9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/blackbox/common/BlackboxTestsDiscovery.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1328,9 +1328,8 @@ TEST_P(Discovery, AsymmeticIgnoreParticipantFlags)
13281328
// This will hold the multicast port. Since the test is not always run in the same domain, we'll need to set
13291329
// its value when the first multicast datagram is sent.
13301330
std::atomic<uint32_t> multicast_port{ 0 };
1331-
// Only two multicast datagrams are allowed: the initial DATA(p) and the DATA(p) sent in response of the discovery
1332-
// of p1.
1333-
constexpr uint32_t allowed_messages_on_port = 2;
1331+
// Only one multicast datagram is allowed: the initial DATA(p)
1332+
constexpr uint32_t allowed_messages_on_port = 1;
13341333

13351334
auto test_transport = std::make_shared<eprosima::fastdds::rtps::test_UDPv4TransportDescriptor>();
13361335

0 commit comments

Comments
 (0)