Skip to content

Commit

Permalink
fix agent config test
Browse files Browse the repository at this point in the history
  • Loading branch information
mpywell committed Oct 4, 2024
1 parent 3703ff3 commit b3848f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builder/proxmox/common/step_start_vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1389,15 +1389,15 @@ func TestGenerateQEMUAgentConfig(t *testing.T) {
{
"disable freeze",
agentConfig{
Enabled: config.TriFalse,
Enabled: config.TriTrue,
Type: "virtio",
Freeze: config.TriTrue,
Freeze: config.TriFalse,
FsTrim: true,
},
&proxmox.QemuGuestAgent{
Enable: boolPointer(false),
Enable: boolPointer(true),
Type: qemuGuestAgentTypePointer("virtio"),
Freeze: boolPointer(true),
Freeze: boolPointer(false),
FsTrim: boolPointer(true),
},
},
Expand Down

0 comments on commit b3848f4

Please sign in to comment.