mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-11 06:02:18 +00:00
Change loadClientOrDie to return an error
Also remove a bunch of dead code. This is a step along the path to getting rid of all the glog in util.go.
This commit is contained in:
@@ -36,7 +36,9 @@ var _ = Describe("Pods", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
c = loadClientOrDie()
|
||||
var err error
|
||||
c, err = loadClient()
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
})
|
||||
|
||||
It("should be submitted and removed", func() {
|
||||
|
Reference in New Issue
Block a user