Projet

Général

Profil

0001-tests_rbac-test-with-postgresql-57500.patch

Benjamin Dauvergne, 01 février 2022 00:48

Télécharger (794 octets)

Voir les différences:

Subject: [PATCH 1/6] tests_rbac: test with postgresql (#57500)

 src/django_rbac/test_settings.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
src/django_rbac/test_settings.py
5 5

  
6 6
DATABASES = {
7 7
    'default': {
8
        'ENGINE': 'django.db.backends.sqlite3',
9
        'NAME': 'authentic2.sqlite3',
8
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
9
        'NAME': 'django-rbac',
10 10
    }
11 11
}
12 12

  
13
-