Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
f169cafe
Commit
f169cafe
authored
Nov 16, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19586: Update remaining deprecated assertions to their preferred usage.
parent
5960d28f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tests/test_upload.py
tests/test_upload.py
+2
-2
No files found.
tests/test_upload.py
View file @
f169cafe
...
@@ -114,11 +114,11 @@ class uploadTestCase(PyPIRCCommandTestCase):
...
@@ -114,11 +114,11 @@ class uploadTestCase(PyPIRCCommandTestCase):
# what did we send ?
# what did we send ?
headers
=
dict
(
self
.
last_open
.
req
.
headers
)
headers
=
dict
(
self
.
last_open
.
req
.
headers
)
self
.
assertEqual
(
headers
[
'Content-length'
],
'2087'
)
self
.
assertEqual
(
headers
[
'Content-length'
],
'2087'
)
self
.
assert
_
(
headers
[
'Content-type'
].
startswith
(
'multipart/form-data'
))
self
.
assert
True
(
headers
[
'Content-type'
].
startswith
(
'multipart/form-data'
))
self
.
assertEqual
(
self
.
last_open
.
req
.
get_method
(),
'POST'
)
self
.
assertEqual
(
self
.
last_open
.
req
.
get_method
(),
'POST'
)
expected_url
=
'https://pypi.python.org/pypi'
expected_url
=
'https://pypi.python.org/pypi'
self
.
assertEqual
(
self
.
last_open
.
req
.
get_full_url
(),
expected_url
)
self
.
assertEqual
(
self
.
last_open
.
req
.
get_full_url
(),
expected_url
)
self
.
assert
_
(
b'xxx'
in
self
.
last_open
.
req
.
data
)
self
.
assert
True
(
b'xxx'
in
self
.
last_open
.
req
.
data
)
def
test_suite
():
def
test_suite
():
return
unittest
.
makeSuite
(
uploadTestCase
)
return
unittest
.
makeSuite
(
uploadTestCase
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment