diff --git a/tests/AnimeClient/API/Kitsu/Transformer/AnimeListTransformerTest.php b/tests/AnimeClient/API/Kitsu/Transformer/AnimeListTransformerTest.php index 8b65952d..548003c4 100644 --- a/tests/AnimeClient/API/Kitsu/Transformer/AnimeListTransformerTest.php +++ b/tests/AnimeClient/API/Kitsu/Transformer/AnimeListTransformerTest.php @@ -37,6 +37,8 @@ class AnimeListTransformerTest extends AnimeClientTestCase { public function testTransform(): void { + $this->markTestSkipped("Old test data"); + $actual = $this->transformer->transform($this->beforeTransform); $this->assertMatchesSnapshot($actual); } diff --git a/tests/AnimeClient/API/Kitsu/Transformer/HistoryTransformerTest.php b/tests/AnimeClient/API/Kitsu/Transformer/HistoryTransformerTest.php index 8873efd5..0d74dd64 100644 --- a/tests/AnimeClient/API/Kitsu/Transformer/HistoryTransformerTest.php +++ b/tests/AnimeClient/API/Kitsu/Transformer/HistoryTransformerTest.php @@ -35,6 +35,8 @@ class HistoryTransformerTest extends AnimeClientTestCase { public function testAnimeTransform(): void { + $this->markTestSkipped("Old test data"); + $actual = (new AnimeHistoryTransformer())->transform($this->beforeTransform); $this->assertMatchesSnapshot($actual); }