Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ProfilesImporterTest.cs =================================================================== diff -u -r2f6400116d57c2b49f7089dbc9c8cd935c185a36 -r1bd759817ce35fd7ab4a8b96886d5cf8244f07fe --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ProfilesImporterTest.cs (.../ProfilesImporterTest.cs) (revision 2f6400116d57c2b49f7089dbc9c8cd935c185a36) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/FileImporters/ProfilesImporterTest.cs (.../ProfilesImporterTest.cs) (revision 1bd759817ce35fd7ab4a8b96886d5cf8244f07fe) @@ -325,7 +325,7 @@ } [Test] - public void Import_InvalidDamType_TrueAndLogMessage() + public void Import_InvalidDamType_FalseAndLogMessage() { // Setup string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, @@ -345,7 +345,7 @@ Assert.IsTrue(found); }; TestHelper.AssertLogMessages(call, asserts); - Assert.IsTrue(importResult); + Assert.IsFalse(importResult); } [Test] @@ -430,7 +430,7 @@ } [Test] - public void Import_PrflIsIncomplete_TrueAndErrorLog() + public void Import_PrflIsIncomplete_FalseAndErrorLog() { // Setup string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.Integration.Plugin, @@ -456,7 +456,7 @@ Assert.IsTrue(found); }; TestHelper.AssertLogMessages(call, asserts); - Assert.IsTrue(importResult); + Assert.IsFalse(importResult); } [Test]