diff --git a/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableTask/DurableTaskManager.cs b/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableTask/DurableTaskManager.cs index d57c2501..ca90b448 100644 --- a/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableTask/DurableTaskManager.cs +++ b/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableTask/DurableTaskManager.cs @@ -25,7 +25,7 @@ namespace Energinet.DataHub.Core.DurableFunctionApp.TestCommon.DurableTask; /// typically from integration tests. /// See https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-instance-management?tabs=csharp /// -/// IMPORTANT: This class is purely intended to be used from tests. +/// IMPORTANT: This class is purely intended to be used from tests /// /// For production scenarious it is recommended to manage instances using /// the Durable Functions orchestration client binding. diff --git a/source/TestCommon/source/TestCommon/Awaiter.cs b/source/TestCommon/source/TestCommon/Awaiter.cs index 8d933d34..a94ed81c 100644 --- a/source/TestCommon/source/TestCommon/Awaiter.cs +++ b/source/TestCommon/source/TestCommon/Awaiter.cs @@ -36,7 +36,7 @@ public static async Task WaitUntilConditionAsync(Func condition, TimeSpan /// /// Completes when the "condition" returns true or - /// when the time limit is exceeded and a XUnitException is thrown + /// when the time limit is exceeded and a XUnitException is thrown. /// /// Boolean condition that is checked. /// Time limit until exception is thrown