|
@@ -187,7 +187,7 @@ func TestFuzz2(t *testing.T) {
|
|
|
func TestFuzz3(t *testing.T) {
|
|
|
isFuzzDebug = true
|
|
|
result := Fuzz([]byte("DATA\r\n"))
|
|
|
- if result != 1 {
|
|
|
+ if result != 0 {
|
|
|
t.Error("Fuzz test did not return 1")
|
|
|
}
|
|
|
|
|
@@ -196,7 +196,7 @@ func TestFuzz3(t *testing.T) {
|
|
|
func TestFuzz4(t *testing.T) {
|
|
|
isFuzzDebug = true
|
|
|
result := Fuzz([]byte("MAIL from: <\r"))
|
|
|
- if result != 1 {
|
|
|
+ if result != 0 {
|
|
|
t.Error("Fuzz test did not return 1")
|
|
|
}
|
|
|
|