Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoegl committed Mar 2, 2013
1 parent 8ac251b commit 2aa30c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions django_couchdb_utils/auth/tests.py
Expand Up @@ -11,7 +11,7 @@ def setUp(self):

def test_user_registration(self):
data = {
'username': 'frank',
'username': 'frank-1',
'password': 'secret',
'email': 'user@host.com',
}
Expand All @@ -28,7 +28,7 @@ def test_user_registration(self):

def test_username_uniqueness(self):
data = {
'username': 'frank',
'username': 'frank-2',
'password': 'secret',
'email': 'user@host.com',
}
Expand All @@ -41,7 +41,7 @@ def test_username_uniqueness(self):

def test_email_uniqueness(self):
data = {
'username': 'frank',
'username': 'frank-3',
'password': 'secret',
'email': 'user@host.com',
}
Expand All @@ -57,7 +57,7 @@ def test_email_uniqueness(self):

def test_user_change_email(self):
data = {
'username': 'frank',
'username': 'frank-4',
'password': 'secret',
'email': 'user@host.com',
}
Expand Down Expand Up @@ -89,7 +89,7 @@ def test_user_profile(self):
settings.AUTH_PROFILE_MODULE = 'auth.UserProfile'

data = {
'username': 'frank',
'username': 'frank-5',
'password': 'secret',
'email': 'user@host.com',
}
Expand Down

0 comments on commit 2aa30c4

Please sign in to comment.