Skip to content

Commit 0bc4fc0

Browse files
test
1 parent a1bfb50 commit 0bc4fc0

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go:
55
before_install:
66
- go get github.com/mattn/goveralls
77
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.15.0
8-
- env GO111MODULE=on go get ./cmd/goqueryset
8+
- env GO111MODULE=on go get ./cmd/goqueryset
99
script:
1010
- env GO111MODULE=on make test
1111
- env GO111MODULE=on $HOME/gopath/bin/goveralls -ignore "internal/queryset/generator/test/autogenerated_models.go,examples/comparison/*/*.go,internal/queryset/generator/test/pkgimport/*.go,internal/queryset/generator/test/pkgimport/*/*/*.go" -v -service=travis-ci

internal/queryset/field/field.go

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,15 @@ func (g InfoGenerator) GenFieldInfo(f Field) *Info {
132132
}
133133
}
134134
return nil
135-
case *types.Array:
136-
if t.Elem().String() == byteType {
137-
return &Info{
138-
BaseInfo: bi,
139-
}
140-
}
141-
return nil
135+
/*
136+
case *types.Array:
137+
if t.Elem().String() == byteType {
138+
return &Info{
139+
BaseInfo: bi,
140+
}
141+
}
142+
return nil
143+
*/
142144
case *types.Named:
143145
r := g.GenFieldInfo(field{
144146
name: f.Name(),

0 commit comments

Comments
 (0)