update some fixtures in tests

updated TestModuleVersion fixture (looks like the test doesn't really care :D)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-08-05 14:33:54 +02:00
parent 2ab75a2461
commit c145229828
3 changed files with 10 additions and 10 deletions

View File

@@ -155,7 +155,7 @@ func TestCloneArgsDumbHttp(t *testing.T) {
}
func TestCloneArgsGit(t *testing.T) {
args := fetchArgs("git://github.com/docker/docker", "master")
args := fetchArgs("git://github.com/moby/moby", "master")
exp := []string{"fetch", "--depth", "1", "origin", "--", "master"}
assert.Check(t, is.DeepEqual(exp, args))
}