Merge pull request #415 from go-redis/fix/govet

travis: run go vet
This commit is contained in:
Vladimir Mihailenco 2016-11-08 11:50:33 +02:00 committed by GitHub
commit 6324604106
4 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@ go:
matrix:
allow_failures:
- go: 1.4
- go: tip
install:

View File

@ -1,6 +1,7 @@
all: testdeps
go test ./...
go test ./... -short -race
go vet
testdeps: testdata/redis/src/redis-server

View File

@ -71,7 +71,6 @@ func (it *ScanIterator) Next() bool {
return true
}
}
return false
}
// Val returns the key/field at the current cursor position.

View File

@ -383,7 +383,7 @@ func commandInfoSliceParser(rd *proto.Reader, n int64) (interface{}, error) {
// Implements proto.MultiBulkParse
func timeParser(rd *proto.Reader, n int64) (interface{}, error) {
if n != 2 {
fmt.Errorf("got %d elements, expected 2", n)
return nil, fmt.Errorf("got %d elements, expected 2", n)
}
secStr, err := rd.ReadStringReply()