Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
asd
  • Loading branch information
Tyrrrz committed Nov 30, 2025
commit b09b9057a95f24a7e3be04c9e75f14e641290b71
2 changes: 1 addition & 1 deletion PolyShim.Tests/Net50/ConvertTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void ToHexString_Test()
{
// Act & assert
Convert.ToHexString("John"u8.ToArray()).Should().Be("4A6F686E");
Convert.ToHexString(Array.Empty<byte>()).Should().Be("");
Convert.ToHexString([]).Should().Be("");
Convert.ToHexString("John"u8.ToArray(), 1, 2).Should().Be("6F68");
}
}
2 changes: 1 addition & 1 deletion PolyShim.Tests/Net90/ConvertTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public void ToHexStringLower_Test()
{
// Act & assert
Convert.ToHexStringLower("John"u8.ToArray()).Should().Be("4a6f686e");
Convert.ToHexStringLower(Array.Empty<byte>()).Should().Be("");
Convert.ToHexStringLower([]).Should().Be("");
Convert.ToHexStringLower("John"u8.ToArray(), 1, 2).Should().Be("6f68");
}
}
Loading