Skip to content

Commit

Permalink
Fix URL download integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkzinzow committed Mar 7, 2024
1 parent f31aefb commit 3ba1932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/io/test_url_download_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ def test_url_download_local_no_read_permissions(local_image_data_fixture, tmpdir
df = daft.from_pydict(data)
df = df.with_column("data", df["urls"].url.download(on_error="raise"))

with pytest.raises(PermissionError):
with pytest.raises(ValueError, match="Permission denied"):
df.collect()

0 comments on commit 3ba1932

Please sign in to comment.