We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f3630 commit 84b5396Copy full SHA for 84b5396
test/e2e/framework/framework.go
@@ -162,6 +162,7 @@ func (f *Framework) BeforeEach() {
162
if f.ClientSet == nil {
163
ginkgo.By("Creating a kubernetes client")
164
config, err := LoadConfig()
165
+ ExpectNoError(err)
166
testDesc := ginkgo.CurrentGinkgoTestDescription()
167
if len(testDesc.ComponentTexts) > 0 {
168
componentTexts := strings.Join(testDesc.ComponentTexts, " ")
@@ -171,7 +172,6 @@ func (f *Framework) BeforeEach() {
171
172
componentTexts)
173
}
174
- ExpectNoError(err)
175
config.QPS = f.Options.ClientQPS
176
config.Burst = f.Options.ClientBurst
177
if f.Options.GroupVersion != nil {
0 commit comments