Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs =================================================================== diff -u -re052252f6f2523cfb33413867a939834ef763ce5 -re42bdf3dd379c46bab9212eb7b30f4754c9bc91c --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs (.../AssessmentSectionFromFileCommandHandlerTest.cs) (revision e052252f6f2523cfb33413867a939834ef763ce5) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs (.../AssessmentSectionFromFileCommandHandlerTest.cs) (revision e42bdf3dd379c46bab9212eb7b30f4754c9bc91c) @@ -57,7 +57,7 @@ TestDelegate call = () => new AssessmentSectionFromFileCommandHandler(null, parentDialogMock, viewControllerMock); // Assert - var paramName = Assert.Throws(call).ParamName; + string paramName = Assert.Throws(call).ParamName; Assert.AreEqual("dialogParent", paramName); mockRepository.VerifyAll(); } @@ -75,7 +75,7 @@ TestDelegate call = () => new AssessmentSectionFromFileCommandHandler(parentDialogMock, null, viewControllerMock); // Assert - var paramName = Assert.Throws(call).ParamName; + string paramName = Assert.Throws(call).ParamName; Assert.AreEqual("projectOwner", paramName); mockRepository.VerifyAll(); } @@ -93,7 +93,7 @@ TestDelegate call = () => new AssessmentSectionFromFileCommandHandler(parentDialogMock, projectOwnerMock, null); // Assert - var paramName = Assert.Throws(call).ParamName; + string paramName = Assert.Throws(call).ParamName; Assert.AreEqual("viewController", paramName); mockRepository.VerifyAll(); }