Commit 15842f37 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #50059 from ddysher/local-e2e-bug-fix

Automatic merge from submit-queue Fix pointer bug in local volume e2e test **What this PR does / why we need it**: Fix pointer bug in local volume e2e test **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes https://github.com/kubernetes/kubernetes/issues/50043 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
parents e29ead11 a8b19582
......@@ -109,7 +109,7 @@ var _ = SIGDescribe("PersistentVolumes-local [Feature:LocalPersistentVolumes] [S
Expect(len(nodes.Items)).NotTo(BeZero(), "No available nodes for scheduling")
scName = fmt.Sprintf("%v-%v", testSCPrefix, f.Namespace.Name)
// Choose the first node
node0 = &config.nodes.Items[0]
node0 = &nodes.Items[0]
config = &localTestConfig{
ns: f.Namespace.Name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment