Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -r3fb0df0ed6e64657154700ee7706e035d5bf99f5 -red4b032b9903f394deb9691c2c39a9f2122ab0f5 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision 3fb0df0ed6e64657154700ee7706e035d5bf99f5) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision ed4b032b9903f394deb9691c2c39a9f2122ab0f5) @@ -812,13 +812,13 @@ Assert.AreEqual(expectedDikeProfile.DikeHeight, actualDikeProfile.DikeHeight); } - private static void AssertForeshoreProfiles(IList expectedForeshoreProfiles, - IList actualDikeProfiles) + private static void AssertForeshoreProfiles(ForeshoreProfileCollection expectedForeshoreProfiles, + ForeshoreProfileCollection actualForeshoreProfiles) { - Assert.AreEqual(expectedForeshoreProfiles.Count, actualDikeProfiles.Count); + Assert.AreEqual(expectedForeshoreProfiles.Count, actualForeshoreProfiles.Count); for (var i = 0; i < expectedForeshoreProfiles.Count; i++) { - AssertForeshoreProfile(expectedForeshoreProfiles[i], actualDikeProfiles[i]); + AssertForeshoreProfile(expectedForeshoreProfiles[i], actualForeshoreProfiles[i]); } }