Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit f178d6d

Browse files
Changing case of test
1 parent 31114a2 commit f178d6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/IntegrationTests/Git/GitSetupTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void VerifyWindowsGitLfsBundle()
8484
gitLfsPath.Exists().Should().BeTrue();
8585

8686
var calculateMd5 = NPath.FileSystem.CalculateMD5(gitLfsPath);
87-
calculateMd5.ToUpper().Should().Be(GitInstaller.WindowsGitLfsExecutableMD5.ToUpper());
87+
calculateMd5.ToLower().Should().Be(GitInstaller.WindowsGitLfsExecutableMD5.ToLower());
8888
}
8989

9090

@@ -104,7 +104,7 @@ public void VerifyMacGitLfsBundle()
104104
gitLfsPath.Exists().Should().BeTrue();
105105

106106
var calculateMd5 = NPath.FileSystem.CalculateMD5(gitLfsPath);
107-
calculateMd5.ToUpper().Should().Be(GitInstaller.MacGitLfsExecutableMD5.ToUpper());
107+
calculateMd5.ToLower().Should().Be(GitInstaller.MacGitLfsExecutableMD5.ToLower());
108108
}
109109
}
110110
}

0 commit comments

Comments
 (0)