From 04fb54a8fc00438f593a81661079c625508e5cd8 Mon Sep 17 00:00:00 2001 From: Paddy Date: Wed, 6 Dec 2017 12:01:30 -0800 Subject: [PATCH] I'm on a roll. How do program. --- google/resource_sql_database_instance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/resource_sql_database_instance_test.go b/google/resource_sql_database_instance_test.go index 2fccb1fb..627314cc 100644 --- a/google/resource_sql_database_instance_test.go +++ b/google/resource_sql_database_instance_test.go @@ -63,7 +63,7 @@ func testSweepDatabases(region string) error { if !testDbInstance { continue } - if !d.State == "RUNNABLE" { + if d.State != "RUNNABLE" { continue } running[d.Name] = struct{}{}