diff --git a/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs b/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs index fbd9f7b7d8..cbaaae7e7f 100644 --- a/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs +++ b/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs @@ -90,7 +90,7 @@ namespace Microsoft.Plugin.Program.UnitTests.Storage } }); - // Assert that this does not throw. Collections that aren't syncronized will throw an invalidoperatioexception if the list is modified while enumerating + // Assert that this does not throw. Collections that aren't synchronized will throw an invalidoperatioexception if the list is modified while enumerating await Task.WhenAll(new Task[] { iterationTask, addTask }).ConfigureAwait(false); } @@ -129,7 +129,7 @@ namespace Microsoft.Plugin.Program.UnitTests.Storage } }); - // Assert that this does not throw. Collections that aren't syncronized will throw an invalidoperatioexception if the list is modified while enumerating + // Assert that this does not throw. Collections that aren't synchronized will throw an invalidoperatioexception if the list is modified while enumerating await Task.WhenAll(new Task[] { iterationTask, addTask }).ConfigureAwait(false); } }