Bug 1232118 - Fix use of stash.put in CORS test, r=Ms2ger

This commit is contained in:
James Graham 2015-12-11 23:25:35 +00:00
Родитель 64b4576585
Коммит 2323e31c7e
2 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -1,5 +0,0 @@
[redirect-preflight-2.htm]
type: testharness
[Same-origin custom-header request, redirect to cross-origin succeeds after doing a preflight]
expected: FAIL

Просмотреть файл

@ -36,7 +36,7 @@ def main(request, response):
#Log that the preflight actually happened if we have an ident
if 'token' in request.GET:
request.server.stash.put(request.GET['token'])
request.server.stash.put(request.GET['token'], True)
if 'location' in request.GET:
if code is None: