Remove unnecessary circleci configuration as we're using default

provided services

Update test users to use circleci default services
This commit is contained in:
Marcos Lilljedahl
2015-07-06 02:20:25 -03:00
parent 0db55007ab
commit ae385b336d
3 changed files with 7 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ func TestPostgresqlGeneratesMetrics(t *testing.T) {
p := &Postgresql{
Servers: []*Server{
{
Address: "host=localhost user=postgres sslmode=disable",
Address: "host=localhost user=ubuntu sslmode=disable",
Databases: []string{"postgres"},
},
},
@@ -57,7 +57,7 @@ func TestPostgresqlTagsMetricsWithDatabaseName(t *testing.T) {
p := &Postgresql{
Servers: []*Server{
{
Address: "host=localhost user=postgres sslmode=disable",
Address: "host=localhost user=ubuntu sslmode=disable",
Databases: []string{"postgres"},
},
},
@@ -78,7 +78,7 @@ func TestPostgresqlDefaultsToAllDatabases(t *testing.T) {
p := &Postgresql{
Servers: []*Server{
{
Address: "host=localhost user=postgres sslmode=disable",
Address: "host=localhost user=ubuntu sslmode=disable",
},
},
}