From 27d2907d122fc67f2b630d8e911f4e54d80d835a Mon Sep 17 00:00:00 2001 From: dbuechel Date: Thu, 28 Jun 2018 14:24:38 +0200 Subject: [PATCH] SEBWIN-220: Added missing condition for ConfigurationOperation unit test. --- .../Behaviour/Operations/ConfigurationOperationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SafeExamBrowser.Runtime.UnitTests/Behaviour/Operations/ConfigurationOperationTests.cs b/SafeExamBrowser.Runtime.UnitTests/Behaviour/Operations/ConfigurationOperationTests.cs index 07da2c95..ae6e7c5e 100644 --- a/SafeExamBrowser.Runtime.UnitTests/Behaviour/Operations/ConfigurationOperationTests.cs +++ b/SafeExamBrowser.Runtime.UnitTests/Behaviour/Operations/ConfigurationOperationTests.cs @@ -337,7 +337,7 @@ namespace SafeExamBrowser.Runtime.UnitTests.Behaviour.Operations var clientProxy = new Mock(); var passwordReceived = new Action((p, id) => { - runtimeHost.Raise(r => r.PasswordReceived += null, new PasswordEventArgs { RequestId = id }); + runtimeHost.Raise(r => r.PasswordReceived += null, new PasswordEventArgs { RequestId = id, Success = true }); }); var session = new Mock(); var url = @"http://www.safeexambrowser.org/whatever.seb";