Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs =================================================================== diff -u -r76948e8765899b35776102ecd211d3d7575a9e4d -r3ed8e00da47ef2780e79688a9902e12b674e4cc0 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs (.../WaveHeightCalculationActivityTest.cs) (revision 76948e8765899b35776102ecd211d3d7575a9e4d) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs (.../WaveHeightCalculationActivityTest.cs) (revision 3ed8e00da47ef2780e79688a9902e12b674e4cc0) @@ -136,9 +136,9 @@ { string[] msgs = messages.ToArray(); Assert.AreEqual(3, msgs.Length); - StringAssert.StartsWith($"Validatie van '{calculationName}' gestart om: ", msgs[0]); + Assert.AreEqual($"Validatie van '{calculationName}' gestart.", msgs[0]); StringAssert.StartsWith("Herstellen van de verbinding met de hydraulische randvoorwaardendatabase is mislukt. Fout bij het lezen van bestand", msgs[1]); - StringAssert.StartsWith($"Validatie van '{calculationName}' beëindigd om: ", msgs[2]); + Assert.AreEqual($"Validatie van '{calculationName}' beëindigd.", msgs[2]); }); Assert.AreEqual(ActivityState.Failed, activity.State); } @@ -180,11 +180,11 @@ { string[] messages = m.ToArray(); Assert.AreEqual(5, messages.Length); - StringAssert.StartsWith($"Validatie van '{calculationName}' gestart om: ", messages[0]); - StringAssert.StartsWith($"Validatie van '{calculationName}' beëindigd om: ", messages[1]); - StringAssert.StartsWith($"Berekening van '{calculationName}' gestart om: ", messages[2]); + Assert.AreEqual($"Validatie van '{calculationName}' gestart.", messages[0]); + Assert.AreEqual($"Validatie van '{calculationName}' beëindigd.", messages[1]); + Assert.AreEqual($"Berekening van '{calculationName}' gestart.", messages[2]); StringAssert.StartsWith("Golfhoogte berekening is uitgevoerd op de tijdelijke locatie", messages[3]); - StringAssert.StartsWith($"Berekening van '{calculationName}' beëindigd om: ", messages[4]); + Assert.AreEqual($"Berekening van '{calculationName}' beëindigd.", messages[4]); }); WaveHeightCalculationInput waveHeightCalculationInput = testWaveHeightCalculator.ReceivedInputs.First();