X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/6dd1693c0e4bfae0ca0983b2a0bf70ae234a6bcb..5513397de7526f0e5e01c1d29a37813008703d6d:/tests/unit/scripting.tcl diff --git a/tests/unit/scripting.tcl b/tests/unit/scripting.tcl index 8634263a..f96d0fc6 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}} @@ -305,7 +301,7 @@ start_server {tags {"scripting"}} { catch {r ping} e assert_match {BUSY*} $e catch {r script kill} e - assert_match {ERR*} $e + assert_match {UNKILLABLE*} $e catch {r ping} e assert_match {BUSY*} $e }