-
Notifications
You must be signed in to change notification settings - Fork 1.5k
storage: tests fail when using modules #1138
Copy link
Copy link
Closed
Labels
api: storageIssues related to the Cloud Storage API.Issues related to the Cloud Storage API.
Description
Client
storage
Describe Your Environment
A program using modules:
#!/bin/sh
set -ex
t=$(mktemp -d)
trap 'rm -r $t' EXIT
cd $t
cat >ex.go <<.
package main
import (
_ "cloud.google.com/go/storage"
)
func main() {
println("example")
}
.
go mod init example
go get github.com/google/martian@master # broken
go test allExpected Behavior
tests pass
Actual Behavior
2018/09/06 13:57:37 creating bucket "go-integration-test-20180906-64657522195962-0001": googleapi: Error 400: Unknown project id: , invalid
FAIL cloud.google.com/go/storage 0.481s
(golang.org/x/sys/unix also fails, but that's out-of-scope)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api: storageIssues related to the Cloud Storage API.Issues related to the Cloud Storage API.