summaryrefslogtreecommitdiff
path: root/test/it_url_slow.t
diff options
context:
space:
mode:
authorChristian Schneider2021-01-13 16:21:03 +0100
committerChristian Schneider2021-01-13 16:21:03 +0100
commit4f7f5e4b1fd1077ad134860b32203810ef24c0ce (patch)
treead1f7ce97388ff1ac4b11e47960ddebe2ae1fa0f /test/it_url_slow.t
parentb1548c21528cc8158f09a3acaf6fb8ef51ae7e5f (diff)
downloaditools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.tar.gz
itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.tar.bz2
itools-4f7f5e4b1fd1077ad134860b32203810ef24c0ce.zip
Unified join to always use implode
Diffstat (limited to 'test/it_url_slow.t')
-rwxr-xr-xtest/it_url_slow.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/it_url_slow.t b/test/it_url_slow.t
index 3462ce2..51da6b9 100755
--- a/test/it_url_slow.t
+++ b/test/it_url_slow.t
@@ -32,7 +32,7 @@ if (!$res || !$res2)
handle_server(
is(
it_url::get('http://localhost:8000/slow_response'),
- join('', it::map('"Testserver slow output $v\n"', range(0, 5))),
+ implode('', it::map('"Testserver slow output $v\n"', range(0, 5))),
'it_url::get() waits for slow response with continuous output'
)
);