Skip to content

Commit

Permalink
fix error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
winkingturtle-vmw committed Sep 30, 2024
1 parent 70e6274 commit 336aed4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions volume_driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ var _ = Describe("Nfs Driver", func() {
Name: volumeName,
})

Expect(getResponse.Err).To(Equal("Volume not found"))
Expect(getResponse.Err).To(Equal("volume not found"))
})

It("/VolumeDriver.Unmount unmounts", func() {
Expand Down Expand Up @@ -336,7 +336,7 @@ var _ = Describe("Nfs Driver", func() {
Name: volumeName,
})

Expect(getResponse.Err).To(Equal("Volume not found"))
Expect(getResponse.Err).To(Equal("volume not found"))
})
})
})
Expand Down Expand Up @@ -370,7 +370,7 @@ var _ = Describe("Nfs Driver", func() {
Name: volumeName,
})

Expect(getResponse.Err).To(Equal("Volume not found"))
Expect(getResponse.Err).To(Equal("volume not found"))
})
})

Expand Down Expand Up @@ -405,7 +405,7 @@ var _ = Describe("Nfs Driver", func() {
Name: volumeName,
})

Expect(unmountResponse.Err).To(Equal("Volume not previously mounted"))
Expect(unmountResponse.Err).To(Equal("volume not previously mounted"))
})
})
})
Expand Down Expand Up @@ -706,7 +706,7 @@ func ExpectVolumeDoesNotExist(env dockerdriver.Env, efsDriver dockerdriver.Drive
Name: volumeName,
})

Expect(getResponse.Err).To(Equal("Volume not found"))
Expect(getResponse.Err).To(Equal("volume not found"))
Expect(getResponse.Volume.Name).To(Equal(""))
}

Expand Down

0 comments on commit 336aed4

Please sign in to comment.