From f29b9f28d6f9a1f6c4e6fd5db731999eb946574b Mon Sep 17 00:00:00 2001 From: Michael Steinert Date: Fri, 15 Feb 2019 12:06:59 -0600 Subject: [PATCH] Update CI build matrix & fix some lint --- .travis.yml | 4 ++-- transaction_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 33afc3a..a31101d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: go go: - - 1.8.x - - 1.9.x + - 1.10.x + - 1.11.x - tip before_install: 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 })