Skip to content

Commit

Permalink
test: correct test case
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jul 5, 2024
1 parent 68e020f commit 920e1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class TestEtherscanResponse:
def response(self, mocker):
return mocker.MagicMock()

@pytest.mark.parametrize("value", ([], [{"foo": "bar"}, None]))
@pytest.mark.parametrize("value", ([], [{"foo": "bar"}], None))
def test_value(self, response, value):
response.json.return_value = {"result": value}
resp = EtherscanResponse(response, "my-ecosystem", raise_on_exceptions=False)
Expand Down

0 comments on commit 920e1a2

Please sign in to comment.