Do not return error when exit status is 1
diff --git a/help_test.go b/help_test.go
index 82eedfd..a59cfbf 100644
--- a/help_test.go
+++ b/help_test.go
@@ -38,6 +38,10 @@
 	os.Remove(atmp.Name())
 	os.Remove(btmp.Name())
 
+	if err.Error() == "exit status 1" {
+		return string(ret), nil
+	}
+
 	return string(ret), err
 }