diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-09 18:30:52 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-09 18:30:52 +0200 |
commit | e357b65b2838ee25c5ac1fa31a6d30729c18259b (patch) | |
tree | 969ad0f72b6a50fe6aca9927a59928ffb4767a9f /ishtar_common/tests.py | |
parent | 91c89b4e85e06385621b2577d209ab037feb672a (diff) | |
download | Ishtar-e357b65b2838ee25c5ac1fa31a6d30729c18259b.tar.bz2 Ishtar-e357b65b2838ee25c5ac1fa31a6d30729c18259b.zip |
Fix account creation test
Diffstat (limited to 'ishtar_common/tests.py')
-rw-r--r-- | ishtar_common/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py index 596cbf9f6..464960b3a 100644 --- a/ishtar_common/tests.py +++ b/ishtar_common/tests.py @@ -1080,7 +1080,7 @@ class AccountWizardTest(WizardTest, TestCase): self.form_datas[0].set('selec', 'pk', self.person.pk) self.form_datas[0].set('account', 'pk', self.person.pk) - self.account_number = models.IshtarSiteProfile.objects.count() + self.account_number = models.IshtarUser.objects.count() super(AccountWizardTest, self).pre_wizard() def post_wizard(self): |