diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-29 13:20:21 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-29 13:20:21 +0200 |
commit | 5f77a4ab463e711121484a17bb5de522400b2dc9 (patch) | |
tree | 5b8b1ed0402828e1acb818fd2898e7053209ff98 /ishtar_common/tests.py | |
parent | a929afc8937dbff7def85251937798c963f85ac0 (diff) | |
download | Ishtar-5f77a4ab463e711121484a17bb5de522400b2dc9.tar.bz2 Ishtar-5f77a4ab463e711121484a17bb5de522400b2dc9.zip |
Extra security to prevent recursion on bulk update
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 e3958814c..eca722670 100644 --- a/ishtar_common/tests.py +++ b/ishtar_common/tests.py @@ -84,7 +84,7 @@ def create_superuser(): def create_user(): username = 'username678' - password = 'dcbqj756456!@%' + password = 'dcbqj756aaa456!@%' q = User.objects.filter(username=username) if q.count(): return username, password, q.all()[0] |