mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 15:13:56 -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)
|
||
|
}
|
||
|
}
|