@@ -18,8 +18,8 @@ func TestExtractVersionFromTag(t *testing.T) {
1818 imageRef string
1919 expected string
2020 }{
21- {"standard tag" , "ghcr.io/alicefr /bink/node:v1.35-fedora-43-disk" , "1.35" },
22- {"no v prefix" , "ghcr.io/alicefr /bink/node:1.35-fedora-43" , "1.35" },
21+ {"standard tag" , "ghcr.io/bootc-dev /bink/node:v1.35-fedora-43-disk" , "1.35" },
22+ {"no v prefix" , "ghcr.io/bootc-dev /bink/node:1.35-fedora-43" , "1.35" },
2323 {"version only" , "registry/repo:v1.30" , "1.30" },
2424 {"latest tag" , "registry/repo:latest" , "" },
2525 {"no tag" , "registry/repo" , "" },
@@ -122,7 +122,7 @@ func TestGetKubeadmVersionFromImage(t *testing.T) {
122122 mock := & mockPodmanClient {
123123 imageLabels : map [string ]string {"bink.kubeadm-version" : "1.35" },
124124 }
125- v , err := GetKubeadmVersionFromImage (ctx , mock , "ghcr.io/alicefr /bink/node:v1.35-fedora-43" )
125+ v , err := GetKubeadmVersionFromImage (ctx , mock , "ghcr.io/bootc-dev /bink/node:v1.35-fedora-43" )
126126 if err != nil {
127127 t .Fatalf ("unexpected error: %v" , err )
128128 }
@@ -135,7 +135,7 @@ func TestGetKubeadmVersionFromImage(t *testing.T) {
135135 mock := & mockPodmanClient {
136136 imageInspectErr : fmt .Errorf ("image not known" ),
137137 }
138- v , err := GetKubeadmVersionFromImage (ctx , mock , "ghcr.io/alicefr /bink/node:v1.30-fedora-43" )
138+ v , err := GetKubeadmVersionFromImage (ctx , mock , "ghcr.io/bootc-dev /bink/node:v1.30-fedora-43" )
139139 if err != nil {
140140 t .Fatalf ("unexpected error: %v" , err )
141141 }
@@ -199,7 +199,7 @@ func TestGetKubeadmVersionFromImage(t *testing.T) {
199199
200200func TestEnsureImagesVolume (t * testing.T ) {
201201 ctx := context .Background ()
202- nodeImage := "ghcr.io/alicefr /bink/node:v1.35-fedora-43"
202+ nodeImage := "ghcr.io/bootc-dev /bink/node:v1.35-fedora-43"
203203
204204 t .Run ("volume exists and completed" , func (t * testing.T ) {
205205 mock := & mockPodmanClient {
0 commit comments