Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -r9a94c2a98bada1dadfae399879a527ce02387f7e -r664249ef211b7f6abdcb44e6e01260a673b9a57b --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 9a94c2a98bada1dadfae399879a527ce02387f7e) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 664249ef211b7f6abdcb44e6e01260a673b9a57b) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2018. All rights reserved. +// Copyright (C) Stichting Deltares 2018. All rights reserved. // // This file is part of Ringtoets. // @@ -2494,10 +2494,10 @@ AssessmentSection assessmentSection = context.WrappedData; return new object[] { - new AssemblyResultPerSectionMapContext(assessmentSection), new AssemblyResultCategoriesContext(assessmentSection), new AssemblyResultTotalContext(assessmentSection), - new AssemblyResultPerSectionContext(assessmentSection) + new AssemblyResultPerSectionContext(assessmentSection), + new AssemblyResultPerSectionMapContext(assessmentSection) }; } Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/AssemblyResultsContextTreeNodeInfoTest.cs =================================================================== diff -u -r9a94c2a98bada1dadfae399879a527ce02387f7e -r664249ef211b7f6abdcb44e6e01260a673b9a57b --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/AssemblyResultsContextTreeNodeInfoTest.cs (.../AssemblyResultsContextTreeNodeInfoTest.cs) (revision 9a94c2a98bada1dadfae399879a527ce02387f7e) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/AssemblyResultsContextTreeNodeInfoTest.cs (.../AssemblyResultsContextTreeNodeInfoTest.cs) (revision 664249ef211b7f6abdcb44e6e01260a673b9a57b) @@ -161,17 +161,17 @@ // Assert Assert.AreEqual(4, objects.Length); - var assemblyResultPerSectionMapContext = (AssemblyResultPerSectionContext)objects[0]; - Assert.AreSame(assessmentSection, assemblyResultPerSectionMapContext.WrappedData); - - var assemblyResultCategoriesContext = (AssemblyResultCategoriesContext) objects[1]; + var assemblyResultCategoriesContext = (AssemblyResultCategoriesContext) objects[0]; Assert.AreSame(assessmentSection, assemblyResultCategoriesContext.WrappedData); - var assemblyResultTotalContext = (AssemblyResultTotalContext) objects[2]; + var assemblyResultTotalContext = (AssemblyResultTotalContext) objects[1]; Assert.AreSame(assessmentSection, assemblyResultTotalContext.WrappedData); - var assemblyResultPerSectionContext = (AssemblyResultPerSectionContext) objects[3]; + var assemblyResultPerSectionContext = (AssemblyResultPerSectionContext) objects[2]; Assert.AreSame(assessmentSection, assemblyResultPerSectionContext.WrappedData); + + var assemblyResultPerSectionMapContext = (AssemblyResultPerSectionMapContext)objects[3]; + Assert.AreSame(assessmentSection, assemblyResultPerSectionMapContext.WrappedData); } }