From d0e7c5bb06ce16a2397d1a79982407d0796221ad Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 17 Apr 2006 03:06:20 +0000 Subject: [PATCH] fix failing noCache test because separator changed --- t/Session/Url.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Session/Url.t b/t/Session/Url.t index d15318172..58bf88442 100644 --- a/t/Session/Url.t +++ b/t/Session/Url.t @@ -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);