Remove more references to Go Cloud (#88)

This commit is contained in:
Ross Light
2018-11-30 10:08:58 -08:00
committed by GitHub
parent 31bae0df4e
commit 90ac48ab7d
4 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@
package main package main
import ( import (
"github.com/google/go-cloud/wire" "github.com/google/wire"
) )
func inject(foo *Foo) *Bar { func inject(foo *Foo) *Bar {

View File

@@ -17,7 +17,7 @@
package main package main
import ( import (
"github.com/google/go-cloud/wire" "github.com/google/wire"
) )
func injectBar(fn func() *Foo) *Bar { func injectBar(fn func() *Foo) *Bar {

View File

@@ -17,7 +17,7 @@
package main package main
import ( import (
"github.com/google/go-cloud/wire" "github.com/google/wire"
) )
func inject(a, b string) *Foo { func inject(a, b string) *Foo {

View File

@@ -73,7 +73,7 @@ func TestWire(t *testing.T) {
test := test test := test
t.Run(test.name, func(t *testing.T) { t.Run(test.name, func(t *testing.T) {
// TODO(light): These tests should be parallelizable, but this causes // TODO(light): These tests should be parallelizable, but this causes
// intermittent failures. See https://github.com/google/go-cloud/issues/669 // intermittent failures. See https://github.com/google/wire/issues/66
// for details. // for details.
// Materialize a temporary GOPATH directory. // Materialize a temporary GOPATH directory.