diff --git a/client_test.go b/client_test.go index 424962b..90911c3 100644 --- a/client_test.go +++ b/client_test.go @@ -60,11 +60,10 @@ func teardownClient() { } func teardown() { - out, err := exec.Command(testCommands["dropdb"], "-U", "postgres", "-h", "localhost", "booktown").CombinedOutput() + _, err := exec.Command(testCommands["dropdb"], "-U", "postgres", "-h", "localhost", "booktown").CombinedOutput() if err != nil { - fmt.Println(string(out)) - fmt.Println("Error:", err) + fmt.Println("Teardown error:", err) } }