Skip to content

Commit

Permalink
fix: correction de tests fonctionnels pour les API
Browse files Browse the repository at this point in the history
La DINUM a changé d'effectif donc les tests étaient à mettre à jour.
  • Loading branch information
sblondon committed Nov 5, 2024
1 parent 602a1b6 commit 253c8a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion impact/api/tests/test_recherche_entreprises.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_api_fonctionnelle():

assert infos == {
"siren": SIREN,
"effectif": CaracteristiquesAnnuelles.EFFECTIF_ENTRE_50_ET_249,
"effectif": CaracteristiquesAnnuelles.EFFECTIF_ENTRE_300_ET_499,
"denomination": "DIRECTION INTERMINISTERIELLE DU NUMERIQUE",
"categorie_juridique_sirene": 7120,
"code_pays_etranger_sirene": None,
Expand Down
4 changes: 2 additions & 2 deletions impact/api/tests/test_sirene.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_api_fonctionnelle():

assert infos == {
"siren": SIREN,
"effectif": CaracteristiquesAnnuelles.EFFECTIF_ENTRE_50_ET_249,
"effectif": CaracteristiquesAnnuelles.EFFECTIF_ENTRE_300_ET_499,
"denomination": "DIRECTION INTERMINISTERIELLE DU NUMERIQUE",
"categorie_juridique_sirene": 7120,
"code_pays_etranger_sirene": None,
Expand All @@ -42,7 +42,7 @@ def test_api_renouvelle_automatiquement_le_jeton_acces_insee(tmp_path, settings)
assert settings.API_INSEE_TOKEN_PATH.read_text() != jeton_expire
assert infos == {
"siren": SIREN,
"effectif": CaracteristiquesAnnuelles.EFFECTIF_ENTRE_50_ET_249,
"effectif": CaracteristiquesAnnuelles.EFFECTIF_ENTRE_300_ET_499,
"denomination": "DIRECTION INTERMINISTERIELLE DU NUMERIQUE",
"categorie_juridique_sirene": 7120,
"code_pays_etranger_sirene": None,
Expand Down

0 comments on commit 253c8a6

Please sign in to comment.