Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7122c3

Browse files
Remove test for now
1 parent 0bd2e2c commit a7122c3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/TestRedis.php

+3
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,9 @@ public function testIncr()
366366
$this->redis->incrBy('key', -1);
367367
$this->assertEquals(8, (int)$this->redis->get('key'));
368368

369+
$this->redis->incrBy('key', 40000000000);
370+
$this->assertEquals("40000000008", $this->redis->get('key'));
371+
369372
$this->redis->delete('key');
370373

371374
$this->redis->set('key', 'abc');

0 commit comments

Comments
 (0)