summaryrefslogtreecommitdiff
path: root/tests/auth_tests/models
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-10-26 18:38:30 -0400
committerTim Graham <timograham@gmail.com>2015-10-27 08:18:22 -0400
commit5acf203db2e9562dbe4073bf85d5043ef3121ea9 (patch)
treea79cd6278b049f7c5a107d11b1c0a124e249d66f /tests/auth_tests/models
parent1f07da3e29c7c3d47968e1c4531dd9bf902575b7 (diff)
Fixed #25596 -- Fixed regression in password change view with custom user model.
The reverse() added in 50aa1a790ca66c2a93e0a52e00c53375b269ff49 crashed on a custom user model.
Diffstat (limited to 'tests/auth_tests/models')
-rw-r--r--tests/auth_tests/models/uuid_pk.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/auth_tests/models/uuid_pk.py b/tests/auth_tests/models/uuid_pk.py
index 44ec4410aa..7c65226493 100644
--- a/tests/auth_tests/models/uuid_pk.py
+++ b/tests/auth_tests/models/uuid_pk.py
@@ -8,6 +8,3 @@ with RemoveGroupsAndPermissions():
class UUIDUser(AbstractUser):
"""A user with a UUID as primary key"""
id = models.UUIDField(default=uuid.uuid4, primary_key=True)
-
- class Meta:
- app_label = 'auth'