From 81825182422c0c29ec7b6562c1e127e79d2f18fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Jim=C3=A9nez?= Date: Wed, 24 Apr 2013 06:15:31 +0000 Subject: [PATCH] Fixed questionnaire test Ver #970 - Legacy-Id: 5686 --- ietf/nomcom/tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ietf/nomcom/tests.py b/ietf/nomcom/tests.py index 57babea8c..493d99761 100644 --- a/ietf/nomcom/tests.py +++ b/ietf/nomcom/tests.py @@ -467,8 +467,7 @@ class NomcomViewsTest(TestCase): comments = 'test add questionnaire view' test_data = {'comments': comments, - 'positions': [position.id], - 'nominees': [nominee.id]} + 'nominee': '%s_%s' % (position.id, nominee.id)} response = self.client.post(self.add_questionnaire_url, test_data)