Skip to content

Commit 7d4b165

Browse files
committed
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
1 parent a7838d8 commit 7d4b165

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/wginfo/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def test_edit_info(self):
218218
state = GroupStateName.objects.get(slug="bof")
219219
r = self.client.post(url,
220220
dict(name="Mars Not Special Interest Group",
221-
acronym="mnsig",
221+
acronym="mars",
222222
parent=area.pk,
223223
ad=ad.pk,
224224
state=state.pk,
@@ -239,7 +239,7 @@ def test_edit_info(self):
239239
label = ""
240240
self.assertEquals(r.status_code, 302)
241241

242-
group = Group.objects.get(acronym="mnsig")
242+
group = Group.objects.get(acronym="mars")
243243
self.assertEquals(group.name, "Mars Not Special Interest Group")
244244
self.assertEquals(group.parent, area)
245245
self.assertEquals(group.ad, ad)

0 commit comments

Comments
 (0)