diff --git a/tests/integration/aof.tcl b/tests/integration/aof.tcl index 954edc2c4..3c77cb966 100644 --- a/tests/integration/aof.tcl +++ b/tests/integration/aof.tcl @@ -119,4 +119,11 @@ tags {"aof"} { assert_equal 0 [$client llen list] } } + + start_server {overrides {appendonly {yes} appendfilename {appendonly.aof}}} { + test {Redis should not try to convert DEL into EXPIREAT for EXPIRE -1} { + r set x 10 + r expire x -1 + } + } }