File tree Expand file tree Collapse file tree 3 files changed +17
-14
lines changed
Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,18 @@ services:
44- docker
55env :
66 global :
7- - DOCKER_COMPOSE_VERSION=1.24 .1
7+ - DOCKER_COMPOSE_VERSION=1.25 .1
88 matrix :
9- - HHVM_VERSION=4.25.1
10- - HHVM_VERSION=4.26.1
11- - HHVM_VERSION=4.27.1
12- - HHVM_VERSION=4.28.2
13- - HHVM_VERSION=4.29.0
14- - HHVM_VERSION=4.30.0
15- - HHVM_VERSION=4.31.0
16- - HHVM_VERSION=latest
9+ - HHVM_VERSION=4.35.0
10+ - HHVM_VERSION=4.36.0
11+ - HHVM_VERSION=4.38.0
12+ - HHVM_VERSION=4.39.0
13+ - HHVM_VERSION=4.40.0
14+ - HHVM_VERSION=4.41.0
15+ - HHVM_VERSION=4.42.0
16+ - HHVM_VERSION=4.43.0
17+ - HHVM_VERSION=4.44.0
18+ - HHVM_VERSION=latest
1719before_install :
1820- sudo rm /usr/local/bin/docker-compose
1921- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname
Original file line number Diff line number Diff line change 1616 }
1717 ],
1818 "require" : {
19- "hhvm" : " ^4.25 " ,
19+ "hhvm" : " ^4.35 " ,
2020 "hhvm/hsl" : " ^4.0" ,
2121 "hhvm/hsl-experimental" : " ^4.25" ,
22- "hhvm/hhvm-autoload" : " ^2.0.10 "
22+ "hhvm/hhvm-autoload" : " ^3.0 "
2323 },
2424 "require-dev" : {
2525 "hhvm/hacktest" : " ^2.0.0" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class MemcachedCacheTest extends HackTest {
1010 $cache = new MemcachedCache ();
1111 $mc = new Memcached (' mc' );
1212 $mc -> addServers(array (
13- [ ' memcached' , 11211 ],
13+ array ( ' memcached' , 11211 )
1414 ));
1515 expect ($cache -> fetch(" qwerty" ))-> toBeNull();
1616 })-> toThrow(InvariantException :: class );
@@ -20,10 +20,11 @@ class MemcachedCacheTest extends HackTest {
2020 $cache = new MemcachedCache ();
2121 $mc = new Memcached (' mc' );
2222 $mc -> addServers(array (
23- [ ' memcached' , 11211 ],
23+ array ( ' memcached' , 11211 )
2424 ));
2525 $cache -> setMemcached($mc );
26- $cache -> save(" qwerty" , new Element (' testing:cache' , 0 ));
26+ expect ($cache -> fetch(" qwerty" ))-> toBeNull();
27+ $cache -> save(" qwerty" , new Element (' testing:cache' , 5 ));
2728 expect ($cache -> fetch(" qwerty" ))-> toBeSame(' testing:cache' );
2829 expect ($cache -> fetch(" qwerty" ))-> toBeSame(' testing:cache' );
2930 $cache -> delete(" qwerty" );
You can’t perform that action at this time.
0 commit comments