Skip to content

Commit 56f3601

Browse files
committed
Fix bug in secr test
- Legacy-Id: 6843
1 parent 1c60f55 commit 56f3601

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/secr/areas/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
SECR_USER='secretary'
1515

1616
def augment_data():
17-
system = Person.objects.get(name="(system)")
17+
system = Person.objects.get(name="(System)")
1818
area = Group.objects.get(acronym='farfut')
1919
GroupEvent.objects.create(group=area,
2020
type='started',
2121
by=system)
2222

2323
class MainTestCase(TestCase):
2424
# See ietf.utils.test_utils.TestCase for the use of perma_fixtures vs. fixtures
25-
perma_fixtures = ['persons', 'groupgroup', 'groupevents']
25+
perma_fixtures = ['groupgroup', 'groupevents']
2626

2727
def test_main(self):
2828
"Main Test"

0 commit comments

Comments
 (0)