File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -71,9 +71,6 @@ public function testSetMethodProperlyCallsMemcache()
71
71
72
72
public function testIncrementMethodProperlyCallsMemcache ()
73
73
{
74
- /** @link https://github.com/php-memcached-dev/php-memcached/pull/468 */
75
- $ this ->markTestSkipped ('Test broken due to parse error in PHP Memcached. ' );
76
-
77
74
$ memcached = m::mock (Memcached::class);
78
75
$ memcached ->shouldReceive ('increment ' )->with ('foo ' , 5 )->once ()->andReturn (5 );
79
76
@@ -83,9 +80,6 @@ public function testIncrementMethodProperlyCallsMemcache()
83
80
84
81
public function testDecrementMethodProperlyCallsMemcache ()
85
82
{
86
- /** @link https://github.com/php-memcached-dev/php-memcached/pull/468 */
87
- $ this ->markTestSkipped ('Test broken due to parse error in PHP Memcached. ' );
88
-
89
83
$ memcached = m::mock (Memcached::class);
90
84
$ memcached ->shouldReceive ('decrement ' )->with ('foo ' , 5 )->once ()->andReturn (0 );
91
85
You can’t perform that action at this time.
0 commit comments