Index: Ringtoets/Integration/src/Ringtoets.Integration.IO/Assembly/ExportableFailureMechanismAssemblyMethod.cs =================================================================== diff -u -rdd302c312d14317c1ac7a065f94696f53920517e -r93451f0f794ce3cbd6fdeaae0b3195af10e7fcad --- Ringtoets/Integration/src/Ringtoets.Integration.IO/Assembly/ExportableFailureMechanismAssemblyMethod.cs (.../ExportableFailureMechanismAssemblyMethod.cs) (revision dd302c312d14317c1ac7a065f94696f53920517e) +++ Ringtoets/Integration/src/Ringtoets.Integration.IO/Assembly/ExportableFailureMechanismAssemblyMethod.cs (.../ExportableFailureMechanismAssemblyMethod.cs) (revision 93451f0f794ce3cbd6fdeaae0b3195af10e7fcad) @@ -6,18 +6,13 @@ public enum ExportableFailureMechanismAssemblyMethod { /// - /// Represents the assembly method WBI-2A-1. + /// Represents the assembly method WBI-1A-1. /// - WBI2A1 = 1, + WBI1A1 = 1, /// - /// Represents the assembly method WBI-2B-1. + /// Represents the assembly method WBI-1B-1. /// - WBI2B1 = 2, - - /// - /// Represents the assembly method WBI-2C-1. - /// - WBI2C1 = 3 + WBI1B1 = 2 } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableFailureMechanismAssemblyMethodTest.cs =================================================================== diff -u -rdd302c312d14317c1ac7a065f94696f53920517e -r93451f0f794ce3cbd6fdeaae0b3195af10e7fcad --- Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableFailureMechanismAssemblyMethodTest.cs (.../ExportableFailureMechanismAssemblyMethodTest.cs) (revision dd302c312d14317c1ac7a065f94696f53920517e) +++ Ringtoets/Integration/test/Ringtoets.Integration.IO.Test/Assembly/ExportableFailureMechanismAssemblyMethodTest.cs (.../ExportableFailureMechanismAssemblyMethodTest.cs) (revision 93451f0f794ce3cbd6fdeaae0b3195af10e7fcad) @@ -15,13 +15,10 @@ return new Dictionary { { - ExportableFailureMechanismAssemblyMethod.WBI2A1, 1 + ExportableFailureMechanismAssemblyMethod.WBI1A1, 1 }, { - ExportableFailureMechanismAssemblyMethod.WBI2B1, 2 - }, - { - ExportableFailureMechanismAssemblyMethod.WBI2C1, 3 + ExportableFailureMechanismAssemblyMethod.WBI1B1, 2 } }; }