fix failing noCache test because separator changed

This commit is contained in:
Colin Kuskie 2006-04-17 03:06:20 +00:00
parent 478a4cf1cf
commit d0e7c5bb06

View file

@ -57,7 +57,7 @@ $session->setting->set(preventProxyCache => 1);
is ( 1, $session->setting->get('preventProxyCache'), 'disable proxy caching');
$url2 = $session->url->gateway('home');
like ( $url2, qr{/home\?noCache=\d+;\d+$}, 'check proxy prevention setting');
like ( $url2, qr{/home\?noCache=\d+,\d+$}, 'check proxy prevention setting');
#Enable caching
$session->setting->set(preventProxyCache => 0);