Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/DuneErosion/DuneLocationEntityReadExtensionsTest.cs =================================================================== diff -u -r489cbf6d1e84948fe927655e1a9bd4fcb4968bfe -r2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/DuneErosion/DuneLocationEntityReadExtensionsTest.cs (.../DuneLocationEntityReadExtensionsTest.cs) (revision 489cbf6d1e84948fe927655e1a9bd4fcb4968bfe) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/DuneErosion/DuneLocationEntityReadExtensionsTest.cs (.../DuneLocationEntityReadExtensionsTest.cs) (revision 2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d) @@ -156,7 +156,7 @@ double waterLevel = random.NextDouble(); double waveHeight = random.NextDouble(); double waterPeriod = random.NextDouble(); - CalculationConvergence convergence = random.NextEnumValue(); + var convergence = random.NextEnumValue(); var duneLocationOutputEntity = new DuneLocationOutputEntity { WaterLevel = waterLevel, @@ -180,7 +180,7 @@ var collector = new ReadConversionCollector(); // Call - var location = entity.Read(collector); + DuneLocation location = entity.Read(collector); // Assert Assert.IsNotNull(location);