store/fixtures: don't rename the fedoratest package
We may want to move this to the test_distro package in the future, but calling it something else than its real name is just confusing. Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
parent
2fe4450620
commit
9a6c05cfed
1 changed files with 3 additions and 3 deletions
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/google/uuid"
|
||||
"github.com/osbuild/osbuild-composer/internal/blueprint"
|
||||
"github.com/osbuild/osbuild-composer/internal/common"
|
||||
test_distro "github.com/osbuild/osbuild-composer/internal/distro/fedoratest"
|
||||
"github.com/osbuild/osbuild-composer/internal/distro/fedoratest"
|
||||
"github.com/osbuild/osbuild-composer/internal/target"
|
||||
)
|
||||
|
||||
|
|
@ -47,7 +47,7 @@ func FixtureBase() *Store {
|
|||
},
|
||||
}
|
||||
|
||||
d := test_distro.New()
|
||||
d := fedoratest.New()
|
||||
arch, err := d.GetArch("x86_64")
|
||||
if err != nil {
|
||||
panic("invalid architecture x86_64 for fedoratest")
|
||||
|
|
@ -125,7 +125,7 @@ func FixtureEmpty() *Store {
|
|||
Customizations: nil,
|
||||
}
|
||||
|
||||
d := test_distro.New()
|
||||
d := fedoratest.New()
|
||||
arch, err := d.GetArch("x86_64")
|
||||
if err != nil {
|
||||
panic("invalid architecture x86_64 for fedoratest")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue