fixed failing tests

This commit is contained in:
Faryan Rezagholi
2020-05-26 11:02:40 +02:00
parent 464fcc54ce
commit 0caa0ee004
2 changed files with 2 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ namespace mRemoteNGTests.Config.Serializers.ConnectionSerializers.Csv
UseCredSsp = true,
UseVmId = false,
UseEnhancedMode = false,
RenderingEngine = HTTPBase.RenderingEngine.Gecko,
RenderingEngine = HTTPBase.RenderingEngine.CEF,
ICAEncryptionStrength = IcaProtocol.EncryptionStrength.Encr40Bit,
RDPAuthenticationLevel = AuthenticationLevel.WarnOnFailedAuth,
Colors = RDPColors.Colors16Bit,

View File

@@ -183,7 +183,7 @@ namespace mRemoteNGTests.Connection
{
var wasCalled = false;
_testAbstractConnectionInfoData.PropertyChanged += (sender, args) => wasCalled = true;
_testAbstractConnectionInfoData.RenderingEngine = HTTPBase.RenderingEngine.Gecko;
_testAbstractConnectionInfoData.RenderingEngine = HTTPBase.RenderingEngine.CEF;
Assert.That(wasCalled, Is.True);
}