diff options
author | Christian Schneider | 2024-04-22 18:30:34 +0200 |
---|---|---|
committer | Christian Schneider | 2024-04-22 18:32:50 +0200 |
commit | c5d0d46693b58e5fecc3f87d19fdf272fd29e0ab (patch) | |
tree | 048d36c395fddaac9ccda1e1e77e6f2720614d9f /test | |
parent | dc7b8557d6bbcbdcef9874ff199bf93a39a11c32 (diff) | |
download | itools-c5d0d46693b58e5fecc3f87d19fdf272fd29e0ab.tar.gz itools-c5d0d46693b58e5fecc3f87d19fdf272fd29e0ab.tar.bz2 itools-c5d0d46693b58e5fecc3f87d19fdf272fd29e0ab.zip |
Send notice to schneider@search.ch to check where chaning default to empty_on_fail=true would have an impact
Diffstat (limited to 'test')
-rwxr-xr-x | test/it_url.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/it_url.t b/test/it_url.t index 01de74b..b141670 100755 --- a/test/it_url.t +++ b/test/it_url.t @@ -348,15 +348,15 @@ is(count($pages), 2, 'it_url::get_multi no additional array elements'); handle_server( is( - it_url::get("http://$host/maybe_error?chance=0"), + it_url::get(['url' => "http://$host/maybe_error?chance=0"]), "success" ), is( - it_url::get("http://$host/maybe_error?chance=100"), + it_url::get(['url' => "http://$host/maybe_error?chance=100", 'empty_on_fail' => false]), "failure" ), is( - it_url::get(['url' => "http://$host/maybe_error?chance=10", 'retries' => 10]), + it_url::get(['url' => "http://$host/maybe_error?chance=10", 'empty_on_fail' => true, 'retries' => 10]), "success", "Retry on sporadically failing url in ::get" ), |