diff options
author | Michael Steinert <[email protected]> | 2019-02-15 12:06:59 -0600 |
---|---|---|
committer | Michael Steinert <[email protected]> | 2019-02-15 12:06:59 -0600 |
commit | f29b9f28d6f9a1f6c4e6fd5db731999eb946574b (patch) | |
tree | 86820333cfce01fd19064e9df16b59e4859e7775 /transaction_test.go | |
parent | f4cd9f5e29232537a12db1678f48c702ad6896b7 (diff) |
Update CI build matrix & fix some lint
Diffstat (limited to 'transaction_test.go')
-rw-r--r-- | transaction_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transaction_test.go b/transaction_test.go index 6be678f..84ebb4a 100644 --- a/transaction_test.go +++ b/transaction_test.go @@ -175,7 +175,7 @@ func TestPAM_007(t *testing.T) { } func TestItem(t *testing.T) { - tx, err := StartFunc("passwd", "test", func(s Style, msg string) (string, error) { + tx, _ := StartFunc("passwd", "test", func(s Style, msg string) (string, error) { return "", nil }) |