Index: DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/CsvParserTest.cs =================================================================== diff -u -r4779 -r6436 --- DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/CsvParserTest.cs (.../CsvParserTest.cs) (revision 4779) +++ DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/CsvParserTest.cs (.../CsvParserTest.cs) (revision 6436) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2024. All rights reserved. +// Copyright (C) Stichting Deltares 2025. All rights reserved. // // This file is part of the application DAM - UI. // @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -65,7 +64,7 @@ [Test] public void ThrowsArgumentExceptionSplitterIsNull() { - string expectedMessage = "The given pattern to split the data values of the CSV files is not valid (Parameter 'splitter')"; + var expectedMessage = "The given pattern to split the data values of the CSV files is not valid (Parameter 'splitter')"; Assert.That(() => CsvParser.ParseHeader("test;test", null), Throws.InstanceOf().With.Message.EqualTo(expectedMessage)); }