aboutsummaryrefslogtreecommitdiff
path: root/test/db.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/db.go')
-rw-r--r--test/db.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/db.go b/test/db.go
index 54ded6ad..d2f405d4 100644
--- a/test/db.go
+++ b/test/db.go
@@ -101,7 +101,6 @@ func currentUser() string {
// Returns the connection string to use and a close function which must be called when the test finishes.
// Calling this function twice will return the same database, which will have data from previous tests
// unless close() is called.
-// TODO: namespace for concurrent package tests
func PrepareDBConnectionString(t *testing.T, dbType DBType) (connStr string, close func()) {
if dbType == DBTypeSQLite {
// this will be made in the t.TempDir, which is unique per test