Skip to content

Commit b3c06d1

Browse files
committed
Patch from mcr@sandelman.ca: Correct the post data of a meeting test case.
- Legacy-Id: 7826
1 parent 81e2f30 commit b3c06d1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ietf/meeting/tests_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ def do_extend(schedule,scheduledsession):
5151
url = urlreverse("ietf.meeting.ajax.scheduledsessions_json",
5252
kwargs=dict(num=session.meeting.number,
5353
name=schedule.name,))
54-
post_data = '{ "session_id": "%s", "timeslot_id": "%s", "extendedfrom_id": "%s" }'%(session.pk,scheduledsession.timeslot.slot_to_the_right.pk,scheduledsession.timeslot.pk)
54+
post_data = '{ "session_id": "%s", "timeslot_id": "%s", "extendedfrom_id": "%s" }'%(session.pk,scheduledsession.timeslot.slot_to_the_right.pk,scheduledsession.pk)
55+
56+
5557
return self.client.post(url,post_data,content_type='application/x-www-form-urlencoded')
5658

5759
# not logged in

0 commit comments

Comments
 (0)