Skip to content

Commit 68a61b8

Browse files
Fix test
1 parent 140bcb4 commit 68a61b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_parser/test_openapi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def test_from_data_no_security(self, mocker):
789789

790790
@pytest.mark.parametrize(
791791
"response_types, expected",
792-
(([], "None"), (["Something"], "Something"), (["First", "Second", "Second"], "Union[First, Second]")),
792+
(([], "Any"), (["Something"], "Something"), (["First", "Second", "Second"], "Union[First, Second]")),
793793
)
794794
def test_response_type(self, response_types, expected):
795795
endpoint = self.make_endpoint()

0 commit comments

Comments
 (0)