Remove !Quiet

This commit is contained in:
Till Faelligen 2022-05-18 15:01:42 +02:00
parent f4bc86adaf
commit 631da5e399

View file

@ -44,7 +44,7 @@ func fatalError(t *testing.T, format string, args ...interface{}) {
}
func createLocalDB(t *testing.T, dbName string) {
if _, err := exec.LookPath("createdb"); err != nil && !Quiet {
if _, err := exec.LookPath("createdb"); err != nil {
fatalError(t, "Note: tests require a postgres install accessible to the current user")
return
}