Index: Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Builders/SoilLayer2DConversionExceptionTest.cs =================================================================== diff -u -r751aaf9b7623bac357cbacf4e6ddae87b2b69f1f -rcb6877f670bacc7a6a896ab132d592eeef1107b5 --- Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Builders/SoilLayer2DConversionExceptionTest.cs (.../SoilLayer2DConversionExceptionTest.cs) (revision 751aaf9b7623bac357cbacf4e6ddae87b2b69f1f) +++ Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/Builders/SoilLayer2DConversionExceptionTest.cs (.../SoilLayer2DConversionExceptionTest.cs) (revision cb6877f670bacc7a6a896ab132d592eeef1107b5) @@ -32,10 +32,10 @@ public void DefaultConstructor_InnerExceptionNullAndMessageDefault() { // Setup - var expectedMessage = String.Format("Exception of type '{0}' was thrown.", typeof(SoilLayer2DConversionException).FullName); + var expectedMessage = String.Format("Exception of type '{0}' was thrown.", typeof(SoilLayerConversionException).FullName); // Call - var exception = new SoilLayer2DConversionException(); + var exception = new SoilLayerConversionException(); // Assert Assert.IsNull(exception.InnerException); @@ -49,7 +49,7 @@ var expectedMessage = "Some exception message"; // Call - var exception = new SoilLayer2DConversionException(expectedMessage); + var exception = new SoilLayerConversionException(expectedMessage); // Assert Assert.IsNull(exception.InnerException); @@ -64,7 +64,7 @@ var expectedInnerException = new Exception(); // Call - var exception = new SoilLayer2DConversionException(expectedMessage, expectedInnerException); + var exception = new SoilLayerConversionException(expectedMessage, expectedInnerException); // Assert Assert.AreSame(expectedInnerException, exception.InnerException);