Consider the following string:
_.Recordings.from_request_url('http://a.b/c?nrids=1,2&rids=3,4&ridx=0', 'sn', 'cn')
Try wrapping it forward once.
Expected result:
_.Recordings.from_request_url(
'http://a.b/c?nrids=1,2&rids=3,4&ridx=0', 'sn', 'cn')
Actual result:
_.Recordings.from_request_url(
'http://a.b/c?nrids=1, 2&rids=3, 4&ridx=0', 'sn', 'cn')
Pay attention to extra spaces injected between 1 and 2 and also between 3 and 4
Consider the following string:
_.Recordings.from_request_url('http://a.b/c?nrids=1,2&rids=3,4&ridx=0', 'sn', 'cn')
Try wrapping it forward once.
Expected result:
Actual result:
Pay attention to extra spaces injected between
1and2and also between3and4