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
This commit is contained in:
Henrik Levkowetz 2013-10-13 21:11:10 +00:00
parent a7838d8765
commit 7d4b1656bb

View file

@ -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)