Переглянути джерело

Merge pull request #46378 from thaJeztah/client_fix_test

client: TestImageTagInvalidSourceImageName remove invalid test-case
Sebastiaan van Stijn 1 рік тому
батько
коміт
6fc6b9bf31
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      client/image_tag_test.go

+ 1 - 1
client/image_tag_test.go

@@ -45,7 +45,7 @@ func TestImageTagInvalidSourceImageName(t *testing.T) {
 		client: newMockClient(errorMock(http.StatusInternalServerError, "client should not have made an API call")),
 	}
 
-	invalidRepos := []string{"fo$z$", "Foo@3cc", "Foo$3", "Foo*3", "Fo^3", "Foo!3", "F)xcz(", "fo%asd", "FOO/bar", "aa/asdf$$^/aa"}
+	invalidRepos := []string{"fo$z$", "Foo@3cc", "Foo$3", "Foo*3", "Fo^3", "Foo!3", "F)xcz(", "fo%asd", "aa/asdf$$^/aa"}
 	for _, repo := range invalidRepos {
 		repo := repo
 		t.Run("invalidRepo/"+repo, func(t *testing.T) {