PyTest - Writing Assertions
Identify the error in this pytest warning assertion code:
import warnings
import pytest
def test_warning():
with pytest.warns(UserWarning):
warnings.warn('Be careful!')
assert pytest.warns(UserWarning)