Fix failing test & format code
This commit is contained in:
parent
fff06353b7
commit
da7382980a
|
@ -31,6 +31,7 @@ func NewTempName(p string) *TempName {
|
||||||
p = "pkr"
|
p = "pkr"
|
||||||
suffix = random.AlphaNumLower(10)
|
suffix = random.AlphaNumLower(10)
|
||||||
}
|
}
|
||||||
|
|
||||||
tempName.ComputeName = fmt.Sprintf("%svm%s", p, suffix)
|
tempName.ComputeName = fmt.Sprintf("%svm%s", p, suffix)
|
||||||
tempName.DeploymentName = fmt.Sprintf("%sdp%s", p, suffix)
|
tempName.DeploymentName = fmt.Sprintf("%sdp%s", p, suffix)
|
||||||
tempName.KeyVaultName = fmt.Sprintf("%skv%s", p, suffix)
|
tempName.KeyVaultName = fmt.Sprintf("%skv%s", p, suffix)
|
||||||
|
|
|
@ -30,8 +30,8 @@ func TestTempNameShouldCreatePrefixedRandomNames(t *testing.T) {
|
||||||
t.Errorf("Expected PublicIPAddressName to begin with 'pkrip', but got '%s'!", tempName.PublicIPAddressName)
|
t.Errorf("Expected PublicIPAddressName to begin with 'pkrip', but got '%s'!", tempName.PublicIPAddressName)
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Index(tempName.ResourceGroupName, "packer-Resource-Group-") != 0 {
|
if strings.Index(tempName.ResourceGroupName, "pkr-Resource-Group-") != 0 {
|
||||||
t.Errorf("Expected ResourceGroupName to begin with 'packer-Resource-Group-', but got '%s'!", tempName.ResourceGroupName)
|
t.Errorf("Expected ResourceGroupName to begin with 'pkr-Resource-Group-', but got '%s'!", tempName.ResourceGroupName)
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Index(tempName.SubnetName, "pkrsn") != 0 {
|
if strings.Index(tempName.SubnetName, "pkrsn") != 0 {
|
||||||
|
|
Loading…
Reference in New Issue