]> git.saurik.com Git - redis.git/blobdiff - client-libraries/erlang/test/proto_tests.erl
Erlang client synched with Valentiono's repo
[redis.git] / client-libraries / erlang / test / proto_tests.erl
index dc2490edbb6c04277a24aee9f96685396d902cf5..5bae317e27a1e138934f1437605370a48cfe513f 100644 (file)
@@ -5,6 +5,6 @@
 parse_test() ->
     ok = proto:parse(empty, "+OK"),
     pong = proto:parse(empty, "+PONG"),
-    false = proto:parse(empty, "0"),
-    true = proto:parse(empty, "1"),
+    false = proto:parse(empty, ":0"),
+    true = proto:parse(empty, ":1"),
     {error, no_such_key} = proto:parse(empty, "-1").