Fix machine inspect test config

Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
Ashley Cui 2024-01-11 11:42:54 -05:00
parent 28b5a6e5f0
commit eeff3d2de8
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ func (i *inspectMachine) buildCmd(m *machineTestBuilder) []string {
if len(i.format) > 0 {
cmd = append(cmd, "--format", i.format)
}
cmd = append(cmd, m.names...)
cmd = append(cmd, m.name)
i.cmd = cmd
return cmd
}