Re: [fetch-tests] Fixing redirect.py script so that it outputs correct parameters for the location URL (#3947)

You can see the difference here: https://bugs.webkit.org/attachment.cgi?id=285414&action=review
Without the patch, we are encoding parameter values enclosed with [' and  '].

We should also probably replace:
    url += "&count=" + str(stashed_data['count']) 
with:
    url_parameters['count'] = str(stashed_data['count'])

But it seems the tests are passing without it

View on GitHub: https://github.com/w3c/web-platform-tests/pull/3947#issuecomment-253418718

Received on Thursday, 13 October 2016 05:35:55 UTC