Skip to content

Commit ad3701e

Browse files
committed
Fixed an issue with the test_edit_replace_user() test
- Legacy-Id: 13740
1 parent 70830e8 commit ad3701e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ietf/secr/rolodex/tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from django.urls import reverse
22

3+
import debug # pyflakes:ignore
4+
35
from ietf.utils.test_utils import TestCase
46
from ietf.person.factories import PersonFactory, UserFactory
57
from ietf.person.models import Person, User
@@ -64,7 +66,7 @@ def test_edit_replace_user(self):
6466
'address': person.address,
6567
'user': user.username,
6668
'email-0-person':person.pk,
67-
'email-0-address': person.email_address,
69+
'email-0-address': person.email_address(),
6870
'email-TOTAL_FORMS':1,
6971
'email-INITIAL_FORMS':1,
7072
'email-MIN_NUM_FORMS':0,

0 commit comments

Comments
 (0)