Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ytake committed Jul 22, 2019
1 parent 46ae511 commit c9deb52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Driver/MemcachedCacheTest.hack
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MemcachedCacheTest extends HackTest {
$cache = new MemcachedCache();
$mc = new Memcached('mc');
$mc->addServers(array(
['memcached', 31211],
['memcached', 11211],
));
expect($cache->fetch("qwerty"))->toBeNull();
})->toThrow(\HH\InvariantException::class);
Expand All @@ -20,7 +20,7 @@ class MemcachedCacheTest extends HackTest {
$cache = new MemcachedCache();
$mc = new Memcached('mc');
$mc->addServers(array(
['memcached', 31211],
['memcached', 11211],
));
$cache->setMemcached($mc);
$cache->save("qwerty", new Element('testing:cache', 0));
Expand Down

0 comments on commit c9deb52

Please sign in to comment.