From 7d4b1656bbe38995959e18f63d00bfd6f78ee5d2 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 13 Oct 2013 21:11:10 +0000 Subject: [PATCH] Changed a test which changed a WG acronym, since this will (and should) fail now -- we don't want to permit acronym changes. - Legacy-Id: 6440 --- ietf/wginfo/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/wginfo/tests.py b/ietf/wginfo/tests.py index abefd5ad8..4eaf80586 100644 --- a/ietf/wginfo/tests.py +++ b/ietf/wginfo/tests.py @@ -218,7 +218,7 @@ class WgEditTestCase(TestCase): state = GroupStateName.objects.get(slug="bof") r = self.client.post(url, dict(name="Mars Not Special Interest Group", - acronym="mnsig", + acronym="mars", parent=area.pk, ad=ad.pk, state=state.pk, @@ -239,7 +239,7 @@ class WgEditTestCase(TestCase): label = "" self.assertEquals(r.status_code, 302) - group = Group.objects.get(acronym="mnsig") + group = Group.objects.get(acronym="mars") self.assertEquals(group.name, "Mars Not Special Interest Group") self.assertEquals(group.parent, area) self.assertEquals(group.ad, ad)