chore: fix test

This commit is contained in:
Marin Salinas 2020-10-13 16:19:15 -05:00
parent 472b008a94
commit 22a49a2f2e
1 changed files with 0 additions and 6 deletions

View File

@ -23,12 +23,6 @@ func TestAccessConfigPrepare_Region(t *testing.T) {
t.Fatalf("should have region validation err: %s", c.RawRegion)
}
c.RawRegion = "us-west-1"
err = c.ValidateOSCRegion(c.RawRegion)
if err != nil {
t.Fatalf("shouldn't have region validation err: %s", c.RawRegion)
}
c.RawRegion = "custom"
err = c.ValidateOSCRegion(c.RawRegion)
if err == nil {