Skip to content

Commit

Permalink
fix test (#335)
Browse files Browse the repository at this point in the history
Signed-off-by: Sammy Oina <[email protected]>
  • Loading branch information
SammyOina authored Dec 16, 2024
1 parent 4c49be5 commit 35c09be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions manager/qemu/vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,13 @@ func TestGetCID(t *testing.T) {
}

func TestGetConfig(t *testing.T) {
expectedConfig := Config{
QemuBinPath: "echo",
expectedConfig := VMInfo{
Config: Config{
QemuBinPath: "echo",
},
}
vm := &qemuVM{
vmi: VMInfo{
Config: expectedConfig,
},
vmi: expectedConfig,
}

config := vm.GetConfig()
Expand Down

0 comments on commit 35c09be

Please sign in to comment.