changes `test_from_response_formname_notexists_fallback_formid` unit test for pull request #1137 - addition of new shortcut for html form election by formid attribute

This commit is contained in:
mrpandav 2015-04-15 16:49:09 +05:30
parent 020a32a3d9
commit 954c8fcecb
1 changed files with 2 additions and 2 deletions

View File

@ -547,7 +547,7 @@ class FormRequestTest(RequestTest):
fs = _qs(r1)
self.assertEqual(fs, {'four': ['4'], 'three': ['3']})
def test_from_response_formid_notexists_fallback_formname(self):
def test_from_response_formname_notexists_fallback_formid(self):
response = _buildresponse(
"""<form action="post.php" method="POST">
<input type="hidden" name="one" value="1">
@ -557,7 +557,7 @@ class FormRequestTest(RequestTest):
<input type="hidden" name="three" value="3">
<input type="hidden" name="four" value="4">
</form>""")
r1 = self.request_class.from_response(response, formid="form3", formname="form2")
r1 = self.request_class.from_response(response, formname="form3", formid="form2")
self.assertEqual(r1.method, 'POST')
fs = _qs(r1)
self.assertEqual(fs, {'four': ['4'], 'three': ['3']})