Skip to content

Commit

Permalink
- PR feedback corections.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyuango committed Mar 8, 2024
1 parent 8791dc5 commit 326b6ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/io/vacco/oruzka/OzHashSpec.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public class OzHashSpec {
Object[] strings = new Object[] {"Hello", "World"};
OzArrays.toStringConcat(strings)
.ifPresent(bytes -> {
String md5 = OzMd5.md5SumOf(bytes);
assertEquals("68E109F0F40CA72A15E05CC22786F8E6", md5);
String md5Hash = OzMd5.md5SumOf(bytes);
assertEquals("68E109F0F40CA72A15E05CC22786F8E6", md5Hash);
});
});
it("can compute the MD5 sum of a file", () -> {
Expand Down

0 comments on commit 326b6ea

Please sign in to comment.