Skip to content

Commit

Permalink
WIP: rollback to defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaupetit committed May 6, 2024
1 parent 6ea2f40 commit 514061d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion env.d/api
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions src/api/tests/api/v1/routers/test_statique.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 514061d

Please sign in to comment.