From a11672e3f6f5af63c23b61de6026cd3c90821953 Mon Sep 17 00:00:00 2001 From: Niels Vanpachtenbeke <10651054+Nielsvanpach@users.noreply.github.com> Date: Thu, 18 Jan 2024 11:17:03 +0100 Subject: [PATCH] skip Brazil implementation returned bad dates --- src/Countries/Brazil.php | 2 ++ tests/Countries/BrazilTest.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Countries/Brazil.php b/src/Countries/Brazil.php index 479d78360..19b9af7a0 100644 --- a/src/Countries/Brazil.php +++ b/src/Countries/Brazil.php @@ -13,6 +13,8 @@ public function countryCode(): string protected function allHolidays(int $year): array { + throw new \Exception('Not implemented yet.'); + return array_merge([ 'Dia de Ano Novo' => '01-01', 'Dia de Tiradentes' => '04-21', diff --git a/tests/Countries/BrazilTest.php b/tests/Countries/BrazilTest.php index 91be74d40..a91509ffb 100644 --- a/tests/Countries/BrazilTest.php +++ b/tests/Countries/BrazilTest.php @@ -15,4 +15,4 @@ ->not()->toBeEmpty(); expect(formatDates($holidays))->toMatchSnapshot(); -}); +})->skip('Still an issue');