Package Encoding:

- FIX format (gofmt) for testing file
This commit is contained in:
Nicolas JUHEL
2026-03-07 16:56:29 +01:00
parent 69da52abb0
commit dee5ba246e
+2 -2
View File
@@ -241,8 +241,8 @@ var _ = Describe("Hexadecimal Encoding and Decoding", func() {
[]byte("Special chars: !@#$%^&*()"),
[]byte("UTF-8: こんにちは世界"),
[]byte("Emoji: 🔒🔐🔑"),
[]byte{0x00, 0xFF, 0x7F, 0x80}, // Binary data
make([]byte, 1000), // Large zeroed data
{0x00, 0xFF, 0x7F, 0x80}, // Binary data
make([]byte, 1000), // Large zeroed data
}
for _, original := range testCases {