Merge pull request #6 from p-/fix-typo-in-container-registry-domain

Thanks. Yes it is a typo in a test that works on a string that sends no request. So no real danger here.
This commit is contained in:
Thomas Eppers 2023-02-10 21:07:15 +01:00 committed by GitHub
commit dad62ebd98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,8 +144,8 @@ mod tests {
(" image: nginx", Ok((" image: ", "nginx"))),
(" image: library/nginx", Ok((" image: ", "library/nginx"))),
(
" image: gchr.io/library/nginx",
Ok((" image: ", "gchr.io/library/nginx")),
" image: ghcr.io/library/nginx",
Ok((" image: ", "ghcr.io/library/nginx")),
),
(" image: nginx # comment", Ok((" image: ", "nginx"))),
(" image: test-hyphen", Ok((" image: ", "test-hyphen"))),