mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-15 02:12:55 +01:00
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:
parent
0bac51746d
commit
ab835b7870
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ func (w *mockWriterNewline) Write(p []byte) (n int, err error) {
|
||||||
|
|
||||||
func FuzzBase64LineBreaker(f *testing.F) {
|
func FuzzBase64LineBreaker(f *testing.F) {
|
||||||
seedData := [][]byte{
|
seedData := [][]byte{
|
||||||
//[]byte(""),
|
[]byte(""),
|
||||||
[]byte("abc"),
|
[]byte("abc"),
|
||||||
[]byte("def"),
|
[]byte("def"),
|
||||||
[]byte("Hello, World!"),
|
[]byte("Hello, World!"),
|
||||||
|
|
Loading…
Reference in a new issue