CSVTools Tests

This commit is contained in:
MAMBILA TETE jean philipp 2024-03-11 18:10:44 +01:00
parent f37e5596f0
commit 481a59afbc

View file

@ -18,7 +18,7 @@ class CSVToolsTest {
@Test
void readCSVFromURL_invalid() {
assertThrowsExactly(IOException.class,() -> {
assertThrows(IOException.class,() -> {
Consumer<String[]> test = s -> System.out.println(Arrays.toString(s));
CSVTools.readCSVFromURL("https://google.fr",
test);