Commit a8b19582 authored by Deyuan Deng's avatar Deyuan Deng

Fix pointer bug in local volume e2e test

parent 2495cc60
......@@ -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