changeset 476:4e335141aa4b

Tests: fix head() remnants in Vary tests.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 16 Oct 2014 23:36:04 +0400
parents c872b2c9645f
children c94fc8e41f5f
files proxy_cache_vary.t
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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');
 
 }