Skip to content

Commit

Permalink
FIX TU suite à correction méthode construction json
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Aug 20, 2024
1 parent 0f0480e commit 3e0f4dd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ void testParseJsonOneValue() throws IOException {
Multimap<String, String> map = ArrayListMultimap.create();
map.put("231927401", "621956651");

Assertions.assertThat(Utilitaires.parseJson(json)).isEqualTo(map);
Assertions.assertThat(Utilitaires.parseJson(json, false)).isEqualTo(map);
}

@Test
Expand All @@ -187,7 +187,7 @@ void testParseJsonManyValues() throws IOException {
map.put("231927401", "621956651");
map.put("111111111", "999999999");

Assertions.assertThat(Utilitaires.parseJson(json)).isEqualTo(map);
Assertions.assertThat(Utilitaires.parseJson(json, false)).isEqualTo(map);
}

@Test
Expand Down

0 comments on commit 3e0f4dd

Please sign in to comment.