provider/digitalocean: move floating ip test out of region w/ capacity problems

Should fix error seen here:

https://travis-ci.org/hashicorp/terraform/builds/100990006
This commit is contained in:
Paul Hinze 2016-01-08 08:12:18 -06:00
parent 48c40c4e35
commit eca929c2db
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ func TestAccDigitalOceanFloatingIP_Droplet(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testAccCheckDigitalOceanFloatingIPExists("digitalocean_floating_ip.foobar", &floatingIP),
resource.TestCheckResourceAttr(
"digitalocean_floating_ip.foobar", "region", "sgp1"),
"digitalocean_floating_ip.foobar", "region", "nyc3"),
),
},
},
@ -114,7 +114,7 @@ resource "digitalocean_droplet" "foobar" {
name = "baz"
size = "1gb"
image = "centos-5-8-x32"
region = "sgp1"
region = "nyc3"
ipv6 = true
private_networking = true
ssh_keys = ["${digitalocean_ssh_key.foobar.id}"]