|
|
|
|
@ -586,12 +586,12 @@ func TestConfigShouldAcceptTags(t *testing.T) {
|
|
|
|
|
|
|
|
|
|
value := c.AzureTags["tag01"]
|
|
|
|
|
if *value != "value01" {
|
|
|
|
|
t.Errorf("expected AzureTags[\"tag01\"] to have value \"value01\", but got %q", value)
|
|
|
|
|
t.Errorf("expected AzureTags[\"tag01\"] to have value \"value01\", but got %q", *value)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
value = c.AzureTags["tag02"]
|
|
|
|
|
if *value != "value02" {
|
|
|
|
|
t.Errorf("expected AzureTags[\"tag02\"] to have value \"value02\", but got %q", value)
|
|
|
|
|
t.Errorf("expected AzureTags[\"tag02\"] to have value \"value02\", but got %q", *value)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|