From 86d6316185b4015149ac9c7f2ab6442e70febee6 Mon Sep 17 00:00:00 2001 From: Paul Morie Date: Wed, 10 Jun 2015 00:11:46 -0400 Subject: [PATCH] Rename emptyDir e2e test cases --- test/e2e/empty_dir.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/empty_dir.go b/test/e2e/empty_dir.go index 0158c082e81..91fdef60f53 100644 --- a/test/e2e/empty_dir.go +++ b/test/e2e/empty_dir.go @@ -30,7 +30,7 @@ import ( var _ = Describe("EmptyDir volumes", func() { f := NewFramework("emptydir") - It("volume on tmpfs should have the correct mode", func() { + It("should have the correct mode", func() { volumePath := "/test-volume" source := &api.EmptyDirVolumeSource{ Medium: api.StorageMediumMemory, @@ -47,7 +47,7 @@ var _ = Describe("EmptyDir volumes", func() { }) }) - It("should support r/w on tmpfs", func() { + It("should support r/w", func() { volumePath := "/test-volume" filePath := path.Join(volumePath, "test-file") source := &api.EmptyDirVolumeSource{