Skip to content

Commit 97842ae

Browse files
committed
Updated test to macth new form field.
- Legacy-Id: 3631
1 parent fdf28a3 commit 97842ae

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ietf/iesg/tests.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from ietf.idtracker.models import *
1212
from ietf.iesg.models import *
1313
from ietf.utils.test_utils import SimpleUrlTestCase, RealDatabaseTest, canonicalize_feed, login_testing_unauthorized
14+
from ietf.ietfworkflows.models import Stream
1415

1516
class RescheduleOnAgendaTestCase(django.test.TestCase):
1617
fixtures = ['base', 'draft']
@@ -87,7 +88,9 @@ def test_reschedule(self):
8788
'area_acronym': draft.idinternal.area_acronym_id,
8889
'note': draft.idinternal.note,
8990
'state_change_notice_to': draft.idinternal.state_change_notice_to,
90-
'intended_status': "6", })
91+
'intended_status': "6",
92+
'stream': Stream.objects.get(name=u'IETF').id,
93+
})
9194
self.assertEquals(r.status_code, 302)
9295

9396
# check that it moved below the right header in the DOM on the

0 commit comments

Comments
 (0)