From ec61b73e2638bad75066e4885a2f728eeb20e20d Mon Sep 17 00:00:00 2001 From: Tyson Gern Date: Wed, 5 Jun 2024 05:45:24 -0600 Subject: [PATCH] Remove println when creating a test database --- pkg/testsupport/test_connection.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/testsupport/test_connection.go b/pkg/testsupport/test_connection.go index 3b2f144..98d3e2c 100644 --- a/pkg/testsupport/test_connection.go +++ b/pkg/testsupport/test_connection.go @@ -22,8 +22,6 @@ func NewTestDb(t *testing.T) *TestDb { assert.NoError(t, err, "unable to create test database") }) - println("created test database: " + testDbName) - return &TestDb{ DB: dbsupport.CreateConnection(fmt.Sprintf("postgres://starter:starter@localhost:5432/%s?sslmode=disable", testDbName)), t: t,