We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd2e2c commit a7122c3Copy full SHA for a7122c3
tests/TestRedis.php
@@ -366,6 +366,9 @@ public function testIncr()
366
$this->redis->incrBy('key', -1);
367
$this->assertEquals(8, (int)$this->redis->get('key'));
368
369
+ $this->redis->incrBy('key', 40000000000);
370
+ $this->assertEquals("40000000008", $this->redis->get('key'));
371
+
372
$this->redis->delete('key');
373
374
$this->redis->set('key', 'abc');
0 commit comments