From 15a90c831b6d765942b43000950955aabd8cb25b Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Fri, 30 Jan 2015 15:46:17 +0200 Subject: [PATCH] Redirect cmds output to stdout. --- redis_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis_test.go b/redis_test.go index a1a0de1..6053af6 100644 --- a/redis_test.go +++ b/redis_test.go @@ -132,7 +132,7 @@ func sortStrings(slice []string) []string { func execCmd(name string, args ...string) (*os.Process, error) { cmd := exec.Command(name, args...) - if false { + if true { cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr }