Skip to content

Commit

Permalink
e2e: change the MySQL host and DB credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
Patryk Kalinowski committed Feb 26, 2021
1 parent a5edf72 commit a481405
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/aws_estimation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func TestAWSEstimation(t *testing.T) {
}

ctx := context.Background()
db, err := sql.Open("mysql", "root:youdeploy@tcp(localhost:3306)/youdeploy_public_test?multiStatements=true")
db, err := sql.Open("mysql", "root:terracost@tcp(localhost:33060)/terracost_test?multiStatements=true")
require.NoError(t, err)

backend := mysql.NewBackend(db)
Expand Down
2 changes: 1 addition & 1 deletion e2e/aws_ingestion_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func TestAWSIngestion(t *testing.T) {

httpClient := mock.NewHTTPClient(ctrl)

db, err := sql.Open("mysql", "root:youdeploy@tcp(localhost:3306)/youdeploy_public_test?multiStatements=true")
db, err := sql.Open("mysql", "root:terracost@tcp(localhost:33060)/terracost_test?multiStatements=true")
require.NoError(t, err)

f, err := os.Open("testdata/AmazonEC2_eu-west-3.csv")
Expand Down

0 comments on commit a481405

Please sign in to comment.