Uncomment seed data in FuzzBase64LineBreaker

The previously commented-out empty byte array is now uncommented to include an empty string as part of the test cases. This change ensures that the FuzzBase64LineBreaker function properly handles an empty input scenario.
This commit is contained in:
Winni Neessen 2024-10-23 11:36:06 +02:00
parent 0bac51746d
commit ab835b7870
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -219,7 +219,7 @@ func (w *mockWriterNewline) Write(p []byte) (n int, err error) {
func FuzzBase64LineBreaker(f *testing.F) {
seedData := [][]byte{
//[]byte(""),
[]byte(""),
[]byte("abc"),
[]byte("def"),
[]byte("Hello, World!"),