Commit a41fdc72 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Arnaud Fontaine

py2/py3: modefnize -f urllib_six product/ERP5OOo/tests/testIngestion.py

parent 5d5fb7aa
......@@ -47,10 +47,9 @@ from Products.CMFCore.utils import getToolByName
from zExceptions import BadRequest
import ZPublisher.HTTPRequest
from unittest import expectedFailure
import urllib
import urllib2
import six.moves.http_client
import six.moves.urllib.parse
import six.moves.urllib.parse, six.moves.urllib.request
import base64
# test files' home
......@@ -2007,7 +2006,7 @@ return result
uri = '%(protocol)s://%(hostname)s' % url_dict
push_url = '%s%s/newContent' % (uri, self.portal.portal_contributions.getPath(),)
request = urllib2.Request(push_url, urllib.urlencode(
request = six.moves.urllib.request.Request(push_url, six.moves.urllib.parse.urlencode(
{'data': data,
'filename': filename,
'reference': reference,
......@@ -2018,7 +2017,7 @@ return result
})
# disable_cookie_login__ is required to force zope to raise Unauthorized (401)
# then HTTPDigestAuthHandler can perform HTTP Authentication
response = urllib2.urlopen(request)
response = six.moves.urllib.request.urlopen(request)
self.assertEqual(response.getcode(), six.moves.http_client.OK)
self.tic()
document = self.portal.portal_catalog.getResultValue(portal_type='Spreadsheet',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment