Skip to content

Commit 06d0ac6

Browse files
committed
++ lint
Signed-off-by: Ivan Mikheykin <ivan.mikheykin@flant.com>
1 parent e0b7cff commit 06d0ac6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/e2e/vm/hotplug_memory.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var _ = FDescribe("HotplugMemory", func() {
5050
f = framework.NewFramework("memory-hotplug")
5151
DeferCleanup(f.After)
5252
f.Before()
53-
t = newmemoryHotplugTest(f)
53+
t = newMemoryHotplugTest(f)
5454
})
5555

5656
DescribeTable("should apply memory changes with live migration", func(initialMemory, changedMemory string) {
@@ -109,11 +109,11 @@ type memoryHotplugTest struct {
109109
VD *v1alpha2.VirtualDisk
110110
}
111111

112-
func newmemoryHotplugTest(f *framework.Framework) *memoryHotplugTest {
112+
func newMemoryHotplugTest(f *framework.Framework) *memoryHotplugTest {
113113
return &memoryHotplugTest{Framework: f}
114114
}
115115

116-
func (t *memoryHotplugTest) generateResources(vmName string, memSize string) {
116+
func (t *memoryHotplugTest) generateResources(vmName, memSize string) {
117117
memSizeQuantity := resource.MustParse(memSize)
118118

119119
vdName := fmt.Sprintf("vd-%s-root", vmName)

0 commit comments

Comments
 (0)