mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-06 14:13:16 -06:00
11 lines
214 B
Go
11 lines
214 B
Go
package azurerm
|
|
|
|
import "testing"
|
|
|
|
func TestAzureRMNormalizeLocation(t *testing.T) {
|
|
s := azureRMNormalizeLocation("West US")
|
|
if s != "westus" {
|
|
t.Fatalf("expected location to equal westus, actual %s", s)
|
|
}
|
|
}
|