Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsFailureMechanismResultViewInfoTest.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r3178e116f5e59e03078d465efeb303c5e232c7bf --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsFailureMechanismResultViewInfoTest.cs (.../MacroStabilityInwardsFailureMechanismResultViewInfoTest.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsFailureMechanismResultViewInfoTest.cs (.../MacroStabilityInwardsFailureMechanismResultViewInfoTest.cs) (revision 3178e116f5e59e03078d465efeb303c5e232c7bf) @@ -311,13 +311,13 @@ // Setup var failureMechanism = new MacroStabilityInwardsFailureMechanism(); var context = new FailureMechanismSectionResultContext(failureMechanism.SectionResults, failureMechanism); - var viewMock = mocks.StrictMock(); - viewMock.Expect(v => v.FailureMechanism = failureMechanism); + var view = mocks.StrictMock(); + view.Expect(v => v.FailureMechanism = failureMechanism); mocks.ReplayAll(); // Call - info.AfterCreate(viewMock, context); + info.AfterCreate(view, context); // Assert mocks.VerifyAll();