Skip to content
This repository was archived by the owner on Mar 22, 2018. It is now read-only.

Commit 3cb72bd

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request #54549 from linyouchong/linyouchong-20171025
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. fix incorrect log **What this PR does / why we need it**: fix incorrect log in nfs_test.go **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # NONE **Special notes for your reviewer**: NONE **Release note**: NONE
2 parents b205af9 + d33867a commit 3cb72bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/volume/cinder/cinder_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func TestPlugin(t *testing.T) {
194194
if _, err := os.Stat(path); err == nil {
195195
t.Errorf("TearDown() failed, volume path still exists: %s", path)
196196
} else if !os.IsNotExist(err) {
197-
t.Errorf("SetUp() failed: %v", err)
197+
t.Errorf("TearDown() failed: %v", err)
198198
}
199199

200200
// Test Provisioner

0 commit comments

Comments
 (0)