summaryrefslogtreecommitdiff
path: root/testing.go
diff options
context:
space:
mode:
Diffstat (limited to 'testing.go')
-rw-r--r--testing.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/testing.go b/testing.go
index d4a8457..14da69f 100644
--- a/testing.go
+++ b/testing.go
@@ -18,10 +18,8 @@ func newSite(t *testing.T) string {
t.Cleanup(func() {
os.RemoveAll(site)
- t.Logf("Removed test site '%s'.", site)
})
- t.Logf("Created test site '%s'.", site)
return site
}
@@ -37,10 +35,8 @@ func emptyDB(t *testing.T) (*sql.DB, string) {
t.Cleanup(func() {
db.Close()
- t.Logf("Removed test database '%s'.", path)
})
- t.Logf("Created test database '%s'.", path)
return db, path
}