Add Binary oriented U tests ...

This commit is contained in:
Yaourt
2010-11-05 15:42:51 +01:00
parent 70cd1768cf
commit c62a6762be
2 changed files with 155 additions and 5 deletions

View File

@@ -2834,9 +2834,9 @@ public class BinaryJedis implements BinaryJedisCommands {
return client.getIntegerReply();
}
public String echo(final byte[] string) {
public byte[] echo(final byte[] string) {
client.echo(string);
return client.getBulkReply();
return client.getBinaryBulkReply();
}
public Integer linsert(final byte[] key, final LIST_POSITION where, final byte[] pivot,