Skip to content

Commit 4212945

Browse files
kola: iso.* fix typos
1 parent 9816db6 commit 4212945

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

mantle/kola/tests/iso/live-iso.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ func isoLiveInstall(c cluster.TestCluster, opts IsoTestOpts) {
208208
c.Fatalf("Unsupported cluster type")
209209
}
210210
if opts.enable4k {
211-
qc.EnforeNative4k()
211+
qc.EnforceNative4k()
212212
}
213213
if opts.enableMultipath {
214-
qc.EnforeMultipath()
214+
qc.EnforceMultipath()
215215
}
216216

217217
tempdir, err := os.MkdirTemp("/var/tmp", "iso")

mantle/kola/tests/iso/live-pxe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ func testPXE(c cluster.TestCluster, opts IsoTestOpts) {
150150
c.Fatalf("Unsupported cluster type")
151151
}
152152
if opts.enable4k {
153-
qc.EnforeNative4k()
153+
qc.EnforceNative4k()
154154
}
155155

156156
installerConfig := CoreosInstallerConfig{

mantle/platform/machine/qemu/cluster.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ type BuilderCallbacks struct {
5151
OverrideDefaults func(builder *platform.QemuBuilder) error
5252
}
5353

54-
func (qc *Cluster) EnforeNative4k() {
54+
func (qc *Cluster) EnforceNative4k() {
5555
qc.flight.opts.Native4k = true
5656
}
5757

58-
func (qc *Cluster) EnforeMultipath() {
58+
func (qc *Cluster) EnforceMultipath() {
5959
qc.flight.opts.MultiPathDisk = true
6060
}
6161

0 commit comments

Comments
 (0)