Skip to content

Commit 03448b6

Browse files
Fix test - version test should be a future version
1 parent 3baa832 commit 03448b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Certify.Tests/Certify.Core.Tests.Unit/Tests/UpdateCheckTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ public void TestUpdateCheck()
1515
// current version is older than newer version
1616
Assert.IsTrue(result.IsNewerVersion);
1717

18-
result = updateChecker.CheckForUpdates("6.1.1").Result;
18+
result = updateChecker.CheckForUpdates("10.1.1").Result;
1919

2020
// current version is newer than update version
2121
Assert.IsFalse(result.IsNewerVersion);
2222

23-
result = updateChecker.CheckForUpdates("6.1.1").Result;
23+
result = updateChecker.CheckForUpdates("10.1.1").Result;
2424

2525
Assert.IsNotNull(result, "Update check result should not be null");
2626

0 commit comments

Comments
 (0)