From dca903ad994fbf531e99cd558567096d21b22ceb Mon Sep 17 00:00:00 2001 From: fubuloubu <3859395+fubuloubu@users.noreply.github.com> Date: Mon, 17 Jul 2023 21:30:50 -0400 Subject: [PATCH] test: remove test skips --- tests/functional/test_uniswap_examples.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/functional/test_uniswap_examples.py b/tests/functional/test_uniswap_examples.py index 5591434..b86ada8 100644 --- a/tests/functional/test_uniswap_examples.py +++ b/tests/functional/test_uniswap_examples.py @@ -22,13 +22,6 @@ def test_uniswap_tokenlists(token_list_name): token_list = requests.get(UNISWAP_RAW_URL + token_list_name).json() - if token_list_name in ( - "example-crosschain.tokenlist.json", - "extensions-valid-object.tokenlist.json", - ): - # TODO: Unskip once can handle object extensions - pytest.skip("https://github.com/ApeWorX/py-tokenlists/issues/20") - if "invalid" not in token_list_name: assert TokenList.parse_obj(token_list).dict() == token_list