Skip to content

Commit 99a30c0

Browse files
committed
stop skipping Memcached tests
- @GrahamCampbell 's PR is already released - php-memcached-dev/php-memcached#468
1 parent d23de5f commit 99a30c0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/Cache/CacheMemcachedStoreTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ public function testSetMethodProperlyCallsMemcache()
7171

7272
public function testIncrementMethodProperlyCallsMemcache()
7373
{
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-
7774
$memcached = m::mock(Memcached::class);
7875
$memcached->shouldReceive('increment')->with('foo', 5)->once()->andReturn(5);
7976

@@ -83,9 +80,6 @@ public function testIncrementMethodProperlyCallsMemcache()
8380

8481
public function testDecrementMethodProperlyCallsMemcache()
8582
{
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-
8983
$memcached = m::mock(Memcached::class);
9084
$memcached->shouldReceive('decrement')->with('foo', 5)->once()->andReturn(0);
9185

0 commit comments

Comments
 (0)