# HG changeset patch # User Maxim Dounin # Date 1413488164 -14400 # Node ID 4e335141aa4b7085839ba4089153f90fb3059345 # Parent c872b2c9645fdf0e8203a5ed6c7a3c2c797c1a59 Tests: fix head() remnants in Vary tests. diff --git a/proxy_cache_vary.t b/proxy_cache_vary.t --- a/proxy_cache_vary.t +++ b/proxy_cache_vary.t @@ -157,11 +157,11 @@ like(get('/', 'deflate'), qr/EXPIRED/ms, 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'); }