@@ -42,7 +42,7 @@ function it_caches_responses(CacheItemPoolInterface $pool, CacheItemInterface $i
4242 $ response ->getHeader ('Cache-Control ' )->willReturn (array ());
4343 $ response ->getHeader ('Expires ' )->willReturn (array ());
4444
45- $ pool ->getItem ('e3b717d5883a45ef9493d009741f7c64 ' )->shouldBeCalled ()->willReturn ($ item );
45+ $ pool ->getItem ('d20f64acc6e70b6079845f2fe357732929550ae1 ' )->shouldBeCalled ()->willReturn ($ item );
4646 $ item ->isHit ()->willReturn (false );
4747 $ item ->set (['response ' => $ response , 'body ' => $ httpBody ])->willReturn ($ item )->shouldBeCalled ();
4848 $ item ->expiresAfter (60 )->willReturn ($ item )->shouldBeCalled ();
@@ -63,7 +63,7 @@ function it_doesnt_store_failed_responses(CacheItemPoolInterface $pool, CacheIte
6363 $ response ->getHeader ('Cache-Control ' )->willReturn (array ());
6464 $ response ->getHeader ('Expires ' )->willReturn (array ());
6565
66- $ pool ->getItem ('e3b717d5883a45ef9493d009741f7c64 ' )->shouldBeCalled ()->willReturn ($ item );
66+ $ pool ->getItem ('d20f64acc6e70b6079845f2fe357732929550ae1 ' )->shouldBeCalled ()->willReturn ($ item );
6767 $ item ->isHit ()->willReturn (false );
6868
6969 $ next = function (RequestInterface $ request ) use ($ response ) {
@@ -101,7 +101,7 @@ function it_calculate_age_from_response(CacheItemPoolInterface $pool, CacheItemI
101101 $ response ->getHeader ('Age ' )->willReturn (array ('15 ' ));
102102 $ response ->getHeader ('Expires ' )->willReturn (array ());
103103
104- $ pool ->getItem ('e3b717d5883a45ef9493d009741f7c64 ' )->shouldBeCalled ()->willReturn ($ item );
104+ $ pool ->getItem ('d20f64acc6e70b6079845f2fe357732929550ae1 ' )->shouldBeCalled ()->willReturn ($ item );
105105 $ item ->isHit ()->willReturn (false );
106106
107107 // 40-15 should be 25
0 commit comments