Skip to content

Commit

Permalink
fix: failing hashcode test
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Sep 13, 2024
1 parent 79de4eb commit c6cbfe7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ public void GetsHashCode()
var stringComparer = StringComparer.OrdinalIgnoreCase;
hash.Add(string.Empty, stringComparer);
hash.Add(string.Empty, stringComparer);
hash.Add("public", stringComparer);
hash.Add(false);
hash.Add(true);
hash.Add(false);
hash.Add(new List<string>(), iEnumComparer);
hash.Add([], iEnumComparer);
var hash2 = new HashCode();
hash2.Add(string.Empty, stringComparer);
hash2.Add(string.Empty, stringComparer);
Expand Down

0 comments on commit c6cbfe7

Please sign in to comment.