josiasmontag / laravel-redis-mock

This Laravel package provides a Redis mock for your tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zrank, zrevrank error

socoolbear opened this issue · comments

The functions operate in the opposite way. (on testing)
Because of this issue , ...


       if (Config::get('app.env') === 'testing') {
            return $connection->zRank($key, $id);
        }

        return $tconnection->zRevRank($key, $id);

ref :
BedrockStreaming/RedisMock#84

Please open an issue on the M6Web/RedisMock repo