Fix some more U tests ...

This commit is contained in:
Yaourt
2010-11-05 10:17:03 +01:00
parent afad308e29
commit 2836d78c44
3 changed files with 16 additions and 6 deletions

View File

@@ -97,8 +97,8 @@ public final class Protocol {
return null;
}
private String processStatusCodeReply(final RedisInputStream is) {
return is.readLine();
private byte[] processStatusCodeReply(final RedisInputStream is) {
return is.readLine().getBytes(UTF8);
}
private byte[] processBulkReply(final RedisInputStream is) {