diff --git a/env.d/api b/env.d/api index dbcd4807..ccbd4f84 100644 --- a/env.d/api +++ b/env.d/api @@ -9,4 +9,3 @@ QUALICHARGE_DB_USER=qualicharge QUALICHARGE_DEBUG=1 QUALICHARGE_OIDC_PROVIDER_BASE_URL=http://keycloak:8080/realms/qualicharge QUALICHARGE_TEST_DB_NAME=test-qualicharge-api -QUALICHARGE_API_BULK_CREATE_MAX_SIZE=100 diff --git a/src/api/tests/api/v1/routers/test_statique.py b/src/api/tests/api/v1/routers/test_statique.py index f38d7833..28def504 100644 --- a/src/api/tests/api/v1/routers/test_statique.py +++ b/src/api/tests/api/v1/routers/test_statique.py @@ -16,7 +16,7 @@ def test_list(client_auth, db_session): assert response.status_code == status.HTTP_200_OK json_response = response.json() assert json_response == { - "limit": 100, + "limit": 10, "offset": 0, "previous": None, "next": None, @@ -35,7 +35,7 @@ def test_list(client_auth, db_session): assert response.status_code == status.HTTP_200_OK json_response = response.json() assert json_response == { - "limit": 100, + "limit": 10, "offset": 0, "previous": None, "next": None,