Merge pull request #1 from edevil/patch-1

Corrected variable reference
This commit is contained in:
Brandon Tosch 2017-03-10 15:15:00 -08:00 committed by GitHub
commit 58325b9d59
1 changed files with 1 additions and 1 deletions

View File

@ -786,7 +786,7 @@ func testLookupAzureRMVirtualMachineManagedDiskID(vm *compute.VirtualMachine, di
}
}
return fmt.Errorf("Unable to locate disk %s on vm %s", diskName, vm.Name)
return fmt.Errorf("Unable to locate disk %s on vm %s", diskName, *vm.Name)
}
}