From 43034fba9a4069ad432b8c714f21580965d37dde Mon Sep 17 00:00:00 2001 From: MalloZup Date: Wed, 5 Sep 2018 15:09:26 +0200 Subject: [PATCH] fix function name changed. PR #393 has introduced a new function name. ( merged). PR #376 was using the old name, which we merged after pr #393 and the review was done before merging #393. This commit just fix the name of function --- libvirt/resource_libvirt_network_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt/resource_libvirt_network_test.go b/libvirt/resource_libvirt_network_test.go index 34a258b0e..c23806177 100644 --- a/libvirt/resource_libvirt_network_test.go +++ b/libvirt/resource_libvirt_network_test.go @@ -25,7 +25,7 @@ func getNetworkDef(s *terraform.State, name string) (*libvirtxml.Network, error) if err != nil { return nil, err } - networkDef, err := newDefNetworkfromLibvirt(network) + networkDef, err := getXMLNetworkDefFromLibvirt(network) if err != nil { return nil, fmt.Errorf("Error reading libvirt network XML description: %s", err) }