@@ -42,7 +42,7 @@ function it_caches_responses(CacheItemPoolInterface $pool, CacheItemInterface $i
42
42
$ response ->getHeader ('Cache-Control ' )->willReturn (array ());
43
43
$ response ->getHeader ('Expires ' )->willReturn (array ());
44
44
45
- $ pool ->getItem ('e3b717d5883a45ef9493d009741f7c64 ' )->shouldBeCalled ()->willReturn ($ item );
45
+ $ pool ->getItem ('d20f64acc6e70b6079845f2fe357732929550ae1 ' )->shouldBeCalled ()->willReturn ($ item );
46
46
$ item ->isHit ()->willReturn (false );
47
47
$ item ->set (['response ' => $ response , 'body ' => $ httpBody ])->willReturn ($ item )->shouldBeCalled ();
48
48
$ item ->expiresAfter (60 )->willReturn ($ item )->shouldBeCalled ();
@@ -63,7 +63,7 @@ function it_doesnt_store_failed_responses(CacheItemPoolInterface $pool, CacheIte
63
63
$ response ->getHeader ('Cache-Control ' )->willReturn (array ());
64
64
$ response ->getHeader ('Expires ' )->willReturn (array ());
65
65
66
- $ pool ->getItem ('e3b717d5883a45ef9493d009741f7c64 ' )->shouldBeCalled ()->willReturn ($ item );
66
+ $ pool ->getItem ('d20f64acc6e70b6079845f2fe357732929550ae1 ' )->shouldBeCalled ()->willReturn ($ item );
67
67
$ item ->isHit ()->willReturn (false );
68
68
69
69
$ next = function (RequestInterface $ request ) use ($ response ) {
@@ -101,7 +101,7 @@ function it_calculate_age_from_response(CacheItemPoolInterface $pool, CacheItemI
101
101
$ response ->getHeader ('Age ' )->willReturn (array ('15 ' ));
102
102
$ response ->getHeader ('Expires ' )->willReturn (array ());
103
103
104
- $ pool ->getItem ('e3b717d5883a45ef9493d009741f7c64 ' )->shouldBeCalled ()->willReturn ($ item );
104
+ $ pool ->getItem ('d20f64acc6e70b6079845f2fe357732929550ae1 ' )->shouldBeCalled ()->willReturn ($ item );
105
105
$ item ->isHit ()->willReturn (false );
106
106
107
107
// 40-15 should be 25
0 commit comments