Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get rid of pytest.warns deprecation warning #380

Merged
merged 1 commit into from
Feb 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proseco/tests/test_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ def test_dark_date_warning():

# Fudge date forward, after the 2018:002 dark cal
acap.date = "2018:010"
with pytest.warns(None) as warns:
with pytest.warns(UserWarning) as warns:
acap.dark # Accessing the `dark` property triggers code to read it (and warn)

assert len(warns) == 1
Expand Down