Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/DikeProfiles/ProfileLocationTest.cs =================================================================== diff -u -ra5c5133ec23681679e77ff31b89e6410d366f247 -ra1bba29ba0d84061cca88da8324957087d564db9 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/DikeProfiles/ProfileLocationTest.cs (.../ProfileLocationTest.cs) (revision a5c5133ec23681679e77ff31b89e6410d366f247) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/DikeProfiles/ProfileLocationTest.cs (.../ProfileLocationTest.cs) (revision a1bba29ba0d84061cca88da8324957087d564db9) @@ -34,7 +34,7 @@ { // Setup var referencePoint = new Point2D(2.2, 3.3); - ProfileLocation profileLocation = new ProfileLocation("id", "name", 1.1, referencePoint); + var profileLocation = new ProfileLocation("id", "name", 1.1, referencePoint); // Assert Assert.AreEqual("id", profileLocation.Id); @@ -48,7 +48,7 @@ { // Setup var referencePoint = new Point2D(2.2, 3.3); - ProfileLocation profileLocation = new ProfileLocation("id", null, 1.1, referencePoint); + var profileLocation = new ProfileLocation("id", null, 1.1, referencePoint); // Assert Assert.IsInstanceOf(typeof(string), profileLocation.Id);