# HG changeset patch # User Ruslan Ermilov # Date 1361970745 -14400 # Node ID 5ed8ef14f79ca02c8be9b5f72f7eedfb72465f53 # Parent 71bb2a896c7a948c4ea397310dd3bd48b22df862 Tests: fixed test of multiple Cache-Control headers. The $sent_http_cache_control variable will soon use comma as a separator. diff --git a/http_variables.t b/http_variables.t --- a/http_variables.t +++ b/http_variables.t @@ -84,7 +84,7 @@ my $log; } like($log, qr!^/: -$!m, 'no header'); -like($log, qr!^/set: max-age=3600; private; must-revalidate$!m, +like($log, qr!^/set: max-age=3600[,;] private[,;] must-revalidate$!m, 'multi headers'); like($log, qr!^/redefine: no-cache$!m, 'ignoring headers with (hash == 0)');