mirror of https://github.com/ppy/osu
Fix incorrect `ConfigureAwait` specification causing stalled test
This only occurs on upcoming changes I have (occurred when switching existing skin import tests across to realm). Unsure why it was set to `true`, seems like a weird oversight.
This commit is contained in:
parent
7a3c69544b
commit
1d96542a2a
|
@ -253,7 +253,7 @@ await Task.WhenAll(tasks.Select(async task =>
|
|||
var scheduledImport = Task.Factory.StartNew(async () => await Import(model, archive, lowPriority, cancellationToken).ConfigureAwait(false),
|
||||
cancellationToken, TaskCreationOptions.HideScheduler, lowPriority ? import_scheduler_low_priority : import_scheduler).Unwrap();
|
||||
|
||||
return await scheduledImport.ConfigureAwait(true);
|
||||
return await scheduledImport.ConfigureAwait(false);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in New Issue