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 | 310de7cbf9c31aa9e68e9033a9e64efd40c473c2 (patch) | |
tree | 969ad0f72b6a50fe6aca9927a59928ffb4767a9f /ishtar_common | |
parent | 2eae28f03ef40c8d26f669527561da755dba81ad (diff) | |
download | Ishtar-310de7cbf9c31aa9e68e9033a9e64efd40c473c2.tar.bz2 Ishtar-310de7cbf9c31aa9e68e9033a9e64efd40c473c2.zip |
Fix account creation test
Diffstat (limited to 'ishtar_common')
-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): |