Fix ContentIntegrationTest.WaitUntil with a func not passing tickStep
This commit is contained in:
parent
dc9ae49126
commit
078f3a7738
1 changed files with 1 additions and 1 deletions
|
|
@ -319,7 +319,7 @@ namespace Content.IntegrationTests
|
|||
protected async Task WaitUntil(IntegrationInstance instance, Func<bool> func, int maxTicks = 600,
|
||||
int tickStep = 1)
|
||||
{
|
||||
await WaitUntil(instance, async () => await Task.FromResult(func()), maxTicks);
|
||||
await WaitUntil(instance, async () => await Task.FromResult(func()), maxTicks, tickStep);
|
||||
}
|
||||
|
||||
protected async Task WaitUntil(IntegrationInstance instance, Func<Task<bool>> func, int maxTicks = 600,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue