Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmleroux committed Nov 28, 2020
1 parent df8f00d commit 7d5f57e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Unit/Attestation/JustificationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testKeys()

$expected = [
'travail',
'achats',
'culture',
'sante',
'famille',
'handicap',
Expand All @@ -41,7 +41,7 @@ public function testText()
$justifications = new Justifications();

$this->assertEquals(
"Déplacement pour chercher les enfants à l’école et à l’occasion de leurs activités périscolaires",
"9. Déplacements pour chercher les enfants à l’école et à l’occasion de leurs activités périscolaires",
$justifications->justificationText('enfants')
);
}
Expand All @@ -52,7 +52,7 @@ public function testChoices()

$expected = [
'Déplacement professionnel' => 'travail',
'Achats de première nécessité' => 'achats',
'Culture' => 'culture',
'Santé' => 'sante',
'Motif familial impérieux' => 'famille',
'Déplacement des personnes en situation de handicap' => 'handicap',
Expand All @@ -62,6 +62,6 @@ public function testChoices()
'Déplacement scolaire' => 'enfants',
];

$this->assertEquals($expected, $justifications->getChoices());
$this->assertSame($expected, $justifications->getChoices());
}
}

0 comments on commit 7d5f57e

Please sign in to comment.