Skip to content
This repository has been archived by the owner on Feb 2, 2022. It is now read-only.

Commit

Permalink
fix flaky tests caused by deleting not empty test dir
Browse files Browse the repository at this point in the history
Signed-off-by: Joris Melchior <joris.melchior@pivotal.io>
  • Loading branch information
Rui Yang authored and Joris Melchior committed Apr 9, 2018
1 parent c2f0711 commit b7b274e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/volume_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ var _ = Describe("Volume Server", func() {
})

AfterEach(func() {
err := os.RemoveAll(tempDir)
err := os.RemoveAll(tempDir + "/*")
Expect(err).NotTo(HaveOccurred())
})

Expand Down

0 comments on commit b7b274e

Please sign in to comment.