change type of error

This commit is contained in:
Matthias 2022-03-02 23:36:53 +01:00
parent c893b81314
commit 941efd08d1
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -7,6 +7,7 @@ import django.core.exceptions as django_exceptions
from django.core.exceptions import ValidationError
from django.contrib.auth import get_user_model
from django.conf import settings
from django.db.utils import IntegrityError
from djmoney.money import Money
from djmoney.contrib.exchange.models import Rate, convert_money
@ -451,5 +452,13 @@ class TestSettings(TestCase):
self.run_reload()
self.assertEqual(user_count(), 1)
# double adding should not work
self.env.set('INVENTREE_ADMIN_USER', 'admin') # set username
self.env.set('INVENTREE_ADMIN_EMAIL', 'info@example.com') # set email
self.env.set('INVENTREE_ADMIN_PASSWORD', 'password123') # set password
with self.assertRaises(IntegrityError):
self.run_reload()
self.assertEqual(user_count(), 1)
# make sure to clean up
settings.TESTING_ENV = False