diff options
author | antirez <antirez@gmail.com> | 2012-10-01 10:10:03 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2012-10-01 10:10:31 +0200 |
commit | ece77037e9601f9f5d2321cc5a779aef10a4c563 (patch) | |
tree | 8da7a1e1ed15ce7770911789742f793f150dada7 /tests | |
parent | 9c21b72bb9b7844b22b60f63af37aa30dd78f898 (diff) | |
download | redis-ece77037e9601f9f5d2321cc5a779aef10a4c563.tar.gz |
Revert "Scripting: redis.NIL to return nil bulk replies."
This reverts commit e061d797d739f2beeb22b9e8ac519d1df070e3a8.
Conflicts:
src/scripting.c
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/scripting.tcl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unit/scripting.tcl b/tests/unit/scripting.tcl index 8634263a9..6dbdb6b63 100644 --- a/tests/unit/scripting.tcl +++ b/tests/unit/scripting.tcl @@ -30,10 +30,6 @@ start_server {tags {"scripting"}} { set _ $e } {this is an error} - test {EVAL - Lua nil reply -> Redis protocol type conversion} { - r eval {return {1,redis.NIL,{nilbulk=true},4}} 0 - } {1 {} {} 4} - test {EVAL - Lua table -> Redis protocol type conversion} { r eval {return {1,2,3,'ciao',{1,2}}} 0 } {1 2 3 ciao {1 2}} |