From e63125c8eca16afe97325bc5549155986fe7485c Mon Sep 17 00:00:00 2001 From: Peter Giacomo Lombardo Date: Tue, 23 Jan 2024 15:22:31 +0100 Subject: [PATCH] A bit more --- Tests/HiveMQtt.Test/HiveMQClient/LWTTest.cs | 2 +- .../HiveMQClient/LastWillAndTestamentBuilderTest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/HiveMQtt.Test/HiveMQClient/LWTTest.cs b/Tests/HiveMQtt.Test/HiveMQClient/LWTTest.cs index 4184771a..077fe0dc 100644 --- a/Tests/HiveMQtt.Test/HiveMQClient/LWTTest.cs +++ b/Tests/HiveMQtt.Test/HiveMQClient/LWTTest.cs @@ -87,7 +87,7 @@ public async Task Last_Will_With_Properties_Async() var disconnectResult = await client.DisconnectAsync(disconnectOptions).ConfigureAwait(false); // Wait until the LWT message is received - var taskResult = await taskLWTReceived.Task.WaitAsync(TimeSpan.FromSeconds(20)).ConfigureAwait(false); + var taskResult = await taskLWTReceived.Task.WaitAsync(TimeSpan.FromSeconds(25)).ConfigureAwait(false); Assert.True(taskResult); } } diff --git a/Tests/HiveMQtt.Test/HiveMQClient/LastWillAndTestamentBuilderTest.cs b/Tests/HiveMQtt.Test/HiveMQClient/LastWillAndTestamentBuilderTest.cs index daa530c8..72dd4761 100644 --- a/Tests/HiveMQtt.Test/HiveMQClient/LastWillAndTestamentBuilderTest.cs +++ b/Tests/HiveMQtt.Test/HiveMQClient/LastWillAndTestamentBuilderTest.cs @@ -98,7 +98,7 @@ public async Task Last_Will_With_Properties_Async() var disconnectResult = await client.DisconnectAsync(disconnectOptions).ConfigureAwait(false); // Wait until the LWT message is received - var taskResult = await taskLWTReceived.Task.WaitAsync(TimeSpan.FromSeconds(20)).ConfigureAwait(false); + var taskResult = await taskLWTReceived.Task.WaitAsync(TimeSpan.FromSeconds(25)).ConfigureAwait(false); Assert.True(taskResult); } }