Browse Source

Merge pull request #39913 from jmartin84/unique-names-plugin-service-test

Use unique names in integration/service/plugin_test.go
Sebastiaan van Stijn 5 years ago
parent
commit
93ed57f460
1 changed files with 3 additions and 3 deletions
  1. 3 3
      integration/service/plugin_test.go

+ 3 - 3
integration/service/plugin_test.go

@@ -31,9 +31,9 @@ func TestServicePlugin(t *testing.T) {
 	reg := registry.NewV2(t)
 	reg := registry.NewV2(t)
 	defer reg.Close()
 	defer reg.Close()
 
 
-	repo := path.Join(registry.DefaultURL, "swarm", "test:v1")
-	repo2 := path.Join(registry.DefaultURL, "swarm", "test:v2")
-	name := "test"
+	name := "test-" + strings.ToLower(t.Name())
+	repo := path.Join(registry.DefaultURL, "swarm", name+":v1")
+	repo2 := path.Join(registry.DefaultURL, "swarm", name+":v2")
 
 
 	d := daemon.New(t)
 	d := daemon.New(t)
 	d.StartWithBusybox(t)
 	d.StartWithBusybox(t)