0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-05 13:33:58 +00:00

Merge pull request #1 from bpg/fix-make-test

fix `make test` error
This commit is contained in:
Pavel Boldyrev 2021-09-07 18:51:46 -04:00 committed by GitHub
commit c6fb17f30a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1145,7 +1145,7 @@ func (r CustomVirtualIODevices) EncodeValues(key string, v *url.Values) error {
// EncodeValues converts a CustomWatchdogDevice struct to a URL vlaue.
func (r CustomWatchdogDevice) EncodeValues(key string, v *url.Values) error {
values := []string{
fmt.Sprintf("model=%s", r.Model),
fmt.Sprintf("model=%+v", r.Model),
}
if r.Action != nil {