Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/SoilProfileEntityReadExtensionsTest.cs =================================================================== diff -u -r545b105a213ed85564861b4bcf6d2d6425dbde50 -r2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/SoilProfileEntityReadExtensionsTest.cs (.../SoilProfileEntityReadExtensionsTest.cs) (revision 545b105a213ed85564861b4bcf6d2d6425dbde50) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/Piping/SoilProfileEntityReadExtensionsTest.cs (.../SoilProfileEntityReadExtensionsTest.cs) (revision 2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d) @@ -52,7 +52,7 @@ public void Read_WithCollector_ReturnsNewPipingSoilProfileWithPropertiesSetAndEntityRegistered(bool isRelevant) { // Setup - string testName = "testName"; + var testName = "testName"; var random = new Random(21); double bottom = random.NextDouble(); var entity = new SoilProfileEntity @@ -113,7 +113,7 @@ public void Read_WithCollectorReadTwice_ReturnsSamePipingSoilProfile() { // Setup - string testName = "testName"; + var testName = "testName"; double bottom = new Random(21).NextDouble(); var entity = new SoilProfileEntity { @@ -136,7 +136,7 @@ PipingSoilProfile profile = entity.Read(collector); // Call - var secondFailureMechanism = entity.Read(collector); + PipingSoilProfile secondFailureMechanism = entity.Read(collector); // Assert Assert.AreSame(profile, secondFailureMechanism);