func QuitClient(t *testing.T, client redis.Client) { // flush it e := client.Quit() if e != nil { t.Fatalf("on Quit - %s", e) } }
func flushAndQuitOnCompletion(t *testing.T, client redis.Client) { // flush it e := client.Flushdb() if e != nil { t.Errorf("on Flushdb - %s", e) } e = client.Quit() if e != nil { t.Errorf("on Quit - %s", e) } }