fix consts
diff --git a/dockertests/const.go b/dockertests/const.go
index 1fdd217..7127971 100644
--- a/dockertests/const.go
+++ b/dockertests/const.go
@@ -24,12 +24,4 @@
 	configName               = "apigeesync_instance_name"
 	ApigeeSyncEventSelector  = "ApigeeSync"
 	testInitUser             = "dockerTestInit"
-	basicTables              = map[string]bool{
-		"deployment_history": true,
-		"deployment":         true,
-		"bundle_config":      true,
-		"configuration":      true,
-		"apid_cluster":       true,
-		"data_scope":         true,
-	}
 )
diff --git a/dockertests/management_pg.go b/dockertests/management_pg.go
index b8a6f3d..0a5048f 100644
--- a/dockertests/management_pg.go
+++ b/dockertests/management_pg.go
@@ -16,8 +16,19 @@
 
 import (
 	"database/sql"
-	_ "github.com/lib/pq"
 	"fmt"
+	_ "github.com/lib/pq"
+)
+
+var (
+	basicTables = map[string]bool{
+		"deployment_history": true,
+		"deployment":         true,
+		"bundle_config":      true,
+		"configuration":      true,
+		"apid_cluster":       true,
+		"data_scope":         true,
+	}
 )
 
 type ManagementPg struct {