summaryrefslogtreecommitdiffhomepage
path: root/pkg/test/testutil
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2020-10-05 15:48:06 -0700
committergVisor bot <gvisor-bot@google.com>2020-10-05 15:54:36 -0700
commit9e9fec3a09308a5df616c86b665b848eba2ba6f7 (patch)
tree8b73b3606d8d5bab97e7763453433fd744ef018f /pkg/test/testutil
parente73bb6d3029273a3adde3807a88b668380af07e9 (diff)
Enable more VFS2 tests
Updates #1487 PiperOrigin-RevId: 335516732
Diffstat (limited to 'pkg/test/testutil')
-rw-r--r--pkg/test/testutil/testutil.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/test/testutil/testutil.go b/pkg/test/testutil/testutil.go
index 06fb823f6..49ab87c58 100644
--- a/pkg/test/testutil/testutil.go
+++ b/pkg/test/testutil/testutil.go
@@ -270,7 +270,7 @@ func RandomID(prefix string) string {
// same name, sometimes between test runs the socket does not get cleaned up
// quickly enough, causing container creation to fail.
func RandomContainerID() string {
- return RandomID("test-container-")
+ return RandomID("test-container")
}
// Copy copies file from src to dst.