Skip to content

Commit 9047875

Browse files
committed
Removed an unused parameter from submit.tests.do_submission_email().
- Legacy-Id: 18082
1 parent 4649c9a commit 9047875

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

ietf/submit/tests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1673,7 +1673,6 @@ def do_submission_email(self, the_url, to, body):
16731673
q = PyQuery(r.content)
16741674
post_button = q('[type=submit]:contains("Send Email")')
16751675
self.assertEqual(len(post_button), 1)
1676-
action = post_button.parents("form").find('input[type=hidden][name="action"]').val()
16771676
subject = post_button.parents("form").find('input[name="subject"]').val()
16781677
frm = post_button.parents("form").find('input[name="frm"]').val()
16791678
cc = post_button.parents("form").find('input[name="cc"]').val()
@@ -1683,7 +1682,6 @@ def do_submission_email(self, the_url, to, body):
16831682

16841683
# post submitter info
16851684
r = self.client.post(the_url, {
1686-
"action": action,
16871685
"subject": subject,
16881686
"frm": frm,
16891687
"to": to,

0 commit comments

Comments
 (0)