Skip to content

Commit

Permalink
A bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
pglombardo committed Jan 23, 2024
1 parent 7c13557 commit e63125c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/HiveMQtt.Test/HiveMQClient/LWTTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit e63125c

Please sign in to comment.