We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f7ea0f commit 134811cCopy full SHA for 134811c
1 file changed
tests/test_fetch.py
@@ -180,15 +180,6 @@ def test_search_returns_xml(
180
FIXTURES = Path(__file__).parent / "fixtures"
181
182
183
-def test_write_search_results_to_file_with_malformed_output_filename(
184
- client: TINDClient,
185
- malformed_filename: str = " .csv",
186
-) -> None:
187
- """write_search_results_to_file raises ValueError for a malformed output filename."""
188
- with pytest.raises(ValueError, match="output_file_name"):
189
- client.write_search_results_to_file("", output_file_name=malformed_filename)
190
-
191
192
def test_write_search_results_to_file_empty_filename(client: TINDClient) -> None:
193
"""write_search_results_to_file raises ValueError for a blank output filename."""
194
with pytest.raises(ValueError):
0 commit comments