Skip to content

Commit

Permalink
Fixed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsteinsland committed Nov 19, 2013
1 parent 881f81d commit 22d9cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Test/Case/Cache/Engine/MemcachedEngineTest.php
Expand Up @@ -224,7 +224,7 @@ public function testIgbinarySerializerSetting() {
*/
public function testMsgpackSerializerSetting() {
$this->skipIf(
!Memcached::HAVE_MSGPACK,
!defined('Memcached::HAVE_MSGPACK') || !Memcached::HAVE_MSGPACK,
'Memcached extension is not compiled with msgpack support'
);

Expand Down Expand Up @@ -272,7 +272,7 @@ public function testJsonSerializerThrowException() {
*/
public function testMsgpackSerializerThrowException() {
$this->skipIf(
Memcached::HAVE_MSGPACK,
defined('Memcached::HAVE_MSGPACK') && Memcached::HAVE_MSGPACK,
'Memcached extension is compiled with msgpack support'
);

Expand Down

0 comments on commit 22d9cd8

Please sign in to comment.