Here's what go build reports:
$ go build ./api
# github.com/pivotal-cf-experimental/davos/database
database/client.go:113: notice.ProductNotices undefined (type ProductNotice has no field or method ProductNotices)
And here's what Ginkgo reports:
$ ginkgo ./api
Failed to compile api:
# github.com/pivotal-cf-experimental/davos/database
api/database/client.go:113: notice.ProductNotices undefined (type ProductNotice has no field or method ProductNotices)
It looks like the problem being solved by the fixCompilationOutput function is causing this problem in turn.
Here's what
go buildreports:And here's what Ginkgo reports:
It looks like the problem being solved by the
fixCompilationOutputfunction is causing this problem in turn.