Fix redis : change ending call with "\r\n"

This commit is contained in:
Loïc
2015-07-13 18:21:16 +02:00
parent c4e5e743c4
commit d5b4e4ba60
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ func TestRedisGeneratesMetrics(t *testing.T) {
return
}
if line != "info\n" {
if line != "info\r\n" {
return
}
@@ -122,7 +122,7 @@ func TestRedisCanPullStatsFromMultipleServers(t *testing.T) {
return
}
if line != "info\n" {
if line != "info\r\n" {
return
}