Update CI build matrix & fix some lint

This commit is contained in:
Michael Steinert
2019-02-15 12:06:59 -06:00
parent f4cd9f5e29
commit f29b9f28d6
2 changed files with 3 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
language: go language: go
go: go:
- 1.8.x - 1.10.x
- 1.9.x - 1.11.x
- tip - tip
before_install: before_install:

View File

@@ -175,7 +175,7 @@ func TestPAM_007(t *testing.T) {
} }
func TestItem(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 return "", nil
}) })