Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -r3ed8e00da47ef2780e79688a9902e12b674e4cc0 -rb6d1940005967399be0d9c6fdda3952d6024b97d --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs) (revision 3ed8e00da47ef2780e79688a9902e12b674e4cc0) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Plugin.Test/TreeNodeInfos/StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs (.../StabilityPointStructuresCalculationGroupContextTreeNodeInfoTest.cs) (revision b6d1940005967399be0d9c6fdda3952d6024b97d) @@ -1321,12 +1321,12 @@ gui.Stub(g => g.ViewCommands).Return(mocks.Stub()); gui.Stub(g => g.MainWindow).Return(mocks.Stub()); - int calculators = failureMechanism.Calculations.Count(); + int nrOfCalculators = failureMechanism.Calculations.Count(); var calculatorFactory = mocks.Stub(); calculatorFactory.Expect(cf => cf.CreateStructuresStabilityPointCalculator(testDataPath)) .Return(new TestStructuresStabilityPointCalculator()) .Repeat - .Times(calculators); + .Times(nrOfCalculators); mocks.ReplayAll(); plugin.Gui = gui;