osbuild/images update: ignore repoconfigs where appropriate
This commit is contained in:
parent
d6cfd04704
commit
d0a6828bd7
6 changed files with 23 additions and 23 deletions
|
|
@ -86,7 +86,7 @@ func FixtureBase(hostDistroName, hostArchName string) *Fixture {
|
|||
panic(fmt.Sprintf("failed to create a manifest: %v", err))
|
||||
}
|
||||
|
||||
mf, err := manifest.Serialize(nil, nil, nil)
|
||||
mf, err := manifest.Serialize(nil, nil, nil, nil)
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("failed to create a manifest: %v", err))
|
||||
}
|
||||
|
|
@ -236,7 +236,7 @@ func FixtureFinished(hostDistroName, hostArchName string) *Fixture {
|
|||
panic(fmt.Sprintf("failed to create a manifest: %v", err))
|
||||
}
|
||||
|
||||
mf, err := manifest.Serialize(nil, nil, nil)
|
||||
mf, err := manifest.Serialize(nil, nil, nil, nil)
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("failed to create a manifest: %v", err))
|
||||
}
|
||||
|
|
@ -470,7 +470,7 @@ func FixtureJobs(hostDistroName, hostArchName string) *Fixture {
|
|||
panic(fmt.Sprintf("failed to create a manifest: %v", err))
|
||||
}
|
||||
|
||||
mf, err := manifest.Serialize(nil, nil, nil)
|
||||
mf, err := manifest.Serialize(nil, nil, nil, nil)
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("failed to create a manifest: %v", err))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ func (suite *storeTest) SetupSuite() {
|
|||
suite.NoError(err)
|
||||
ibp := blueprint.Convert(suite.myBP)
|
||||
manifest, _, _ := suite.myImageType.Manifest(&ibp, suite.myImageOptions, suite.myRepoConfig, 0)
|
||||
suite.myManifest, _ = manifest.Serialize(nil, nil, nil)
|
||||
suite.myManifest, _ = manifest.Serialize(nil, nil, nil, nil)
|
||||
suite.mySourceConfig = SourceConfig{
|
||||
Name: "testSourceConfig",
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue