Skip to content

Commit

Permalink
Correction orthographe
Browse files Browse the repository at this point in the history
  • Loading branch information
amandine-sahl committed Jun 20, 2024
1 parent b863905 commit 640aa3e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def handle_user_event_nb_exceded_error(e):
return (
jsonify(
{
"error": "Vous avez atteind la limite du nombre de réservation possible par personne"
"error": "Vous avez atteint la limite du nombre de réservations possible par personne"
}
),
422,
Expand All @@ -115,7 +115,7 @@ def handle_participant_nb_exceded_error(e):
return (
jsonify(
{
"error": "Vous avez ne pouvez pas inscrire autant de personne sur une animation"
"error": "Vous ne pouvez pas inscrire autant de personnes sur une animation"
}
),
422,
Expand Down
4 changes: 2 additions & 2 deletions backend/config/config.py.sample
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ ORGANISM_FOR_EMAIL_SUBJECT = ""

# Le nombre maximale de personnes que l'on peut mettre en liste d'attente sur un événement.
LISTE_ATTENTE_CAPACITY = 10
# Le nombre maximale d'animations auxquelles une personne peut s'inscrire
# Le nombre maximal d'animations auxquelles une personne peut s'inscrire
NB_ANIM_MAX_PER_USER = 3
# Le nombre maximale de participant pouvant s'inscrire à une animation
# Le nombre maximal de participants pouvant s'inscrire à une animation
NB_PARTICIPANTS_PER_ANIM = 10

# L'adresse où écoute le frontend du portail de réservation, par exemple : 'www.png-resa.fr' ou 'localhost:5000'.
Expand Down
4 changes: 2 additions & 2 deletions backend/config/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

# Le nombre maximale de personnes que l'on peut mettre en liste d'attente sur un événement.
LISTE_ATTENTE_CAPACITY = 10
# Le nombre maximale d'animations auxquelles une personne peut s'inscrire.
NB_ANIM_MAX_PER_USER = 3
# Le nombre maximal d'animations auxquelles une personne peut s'inscrire
NB_ANIM_MAX_PER_USER = 1
# Le nombre maximale de participant pouvant s'inscrire à une animation
NB_PARTICIPANTS_PER_ANIM = 10
# L'adresse où écoute le frontend du portail de réservation, par exemple : 'www.png-resa.fr' ou 'localhost:5000'.
Expand Down
7 changes: 3 additions & 4 deletions backend/test/test_api_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ def test_post_limit_nb_animations(self, events):

nb_limit_per_user = current_app.config["NB_ANIM_MAX_PER_USER"]

# Création du nombre de reservations spécifiée dans NB_ANIM_MAX_PER_USER

# Création du nombre de reservations spécifié dans NB_ANIM_MAX_PER_USER
for loop in range(nb_limit_per_user):
resp = post_json(
self.client, url_for("app_routes.post_reservations"), data_resa
Expand All @@ -162,7 +161,7 @@ def test_post_limit_nb_animations(self, events):
assert resp.status_code == 422
assert (
json_of_response(resp)["error"]
== "Vous avez atteind la limite du nombre de réservation possible par personne"
== "Vous avez atteint la limite du nombre de réservations possible par personne"
)

def test_post_limit_nb_participants(self, events):
Expand All @@ -183,5 +182,5 @@ def test_post_limit_nb_participants(self, events):
assert resp.status_code == 422
assert (
json_of_response(resp)["error"]
== "Vous avez ne pouvez pas inscrire autant de personne sur une animation"
== "Vous ne pouvez pas inscrire autant de personnes sur une animation"
)

0 comments on commit 640aa3e

Please sign in to comment.