mirror of https://github.com/knative/pkg.git
golang format tools (#419)
Produced via: `gofmt -s -w $(find -path './vendor' -prune -o -type f -name '*.go' -print))` `goimports -w $(find -name '*.go' | grep -v vendor)`
This commit is contained in:
parent
837d0c61aa
commit
34792a92ce
|
@ -357,7 +357,6 @@ func TestWatchWithDefaultAfterStart(t *testing.T) {
|
|||
|
||||
foo1 := &counter{name: "foo1"}
|
||||
|
||||
|
||||
// Add the WatchWithDefault. This should panic because the InformedWatcher has already started.
|
||||
func() {
|
||||
defer func() {
|
||||
|
|
|
@ -19,10 +19,11 @@ package controller
|
|||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"github.com/google/uuid"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
|
||||
"go.uber.org/zap"
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||
|
|
Loading…
Reference in New Issue