# HG changeset patch # User Maxim Dounin # Date 1413488164 -14400 # Node ID 4e335141aa4b7085839ba4089153f90fb3059345 # Parent c872b2c9645fdf0e8203a5ed6c7a3c2c797c1a59 Tests: fix head() remnants in Vary tests. diff -r c872b2c9645f -r 4e335141aa4b proxy_cache_vary.t --- a/proxy_cache_vary.t Thu Oct 16 21:13:09 2014 +0400 +++ b/proxy_cache_vary.t Thu Oct 16 23:36:04 2014 +0400 @@ -157,11 +157,11 @@ TODO: { local $TODO = 'not yet'; -like(head('/', 'gzip'), qr/MISS/ms, 'first not bumped by second requests'); +like(get('/', 'gzip'), qr/MISS/ms, 'first not bumped by second requests'); } -like(head('/', 'deflate'), qr/HIT/ms, 'second variant cached'); +like(get('/', 'deflate'), qr/HIT/ms, 'second variant cached'); }