CA-217862: Unit test fix

to reflect that NULL is expected in this case

Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
This commit is contained in:
Gabor Apati-Nagy 2016-08-10 14:01:36 +01:00
parent 9f7a635da1
commit 0ae3f6e2c4

View File

@ -387,7 +387,7 @@ namespace XenAdminTests.UnitTests
/// <summary>
/// Version does not exist
/// Result: update sequence does not have the host
/// Result: update sequence is null
/// </summary>
[Test]
public void NoInfoForCurrentVersion()
@ -404,7 +404,7 @@ namespace XenAdminTests.UnitTests
// Assert
Assert.NotNull(upgradeSequence);
Assert.Null(upgradeSequence);
Assert.AreEqual(0, upgradeSequence.Count);
}