summaryrefslogtreecommitdiff
path: root/parse_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'parse_test.go')
-rw-r--r--parse_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse_test.go b/parse_test.go
index b72563c..2e438aa 100644
--- a/parse_test.go
+++ b/parse_test.go
@@ -458,14 +458,14 @@ func TestHelpFlag(t *testing.T) {
func TestPanicOnNonPointer(t *testing.T) {
var args struct{}
assert.Panics(t, func() {
- parse("", args)
+ _ = parse("", args)
})
}
func TestPanicOnNonStruct(t *testing.T) {
var args string
assert.Panics(t, func() {
- parse("", &args)
+ _ = parse("", &args)
})
}