Skip to content

Commit 6189194

Browse files
authored
Merge pull request #39 from lpabon/skiprb
remove listvolume nil list check
2 parents e2754e4 + 5df0bd8 commit 6189194

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

hack/e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd ../..
1313
for endpoint in $CSI_ENDPOINTS ; do
1414
rm -f $UDS
1515

16-
CSI_ENDPOINT=$endpoint mock &
16+
CSI_ENDPOINT=$endpoint mock > /dev/null 2>&1 &
1717
pid=$!
1818

1919
csi-sanity $@ --csi.endpoint=$endpoint ; ret=$?

pkg/sanity/controller.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ var _ = Describe("ListVolumes [Controller Server]", func() {
177177
})
178178
Expect(err).NotTo(HaveOccurred())
179179
Expect(vols).NotTo(BeNil())
180-
Expect(vols.GetEntries()).NotTo(BeNil())
181180

182181
for _, vol := range vols.GetEntries() {
183182
verifyVolumeInfo(vol.GetVolumeInfo())

0 commit comments

Comments
 (0)