PyTest - Writing Assertions
Find the issue in this test code:
import pytest
import warnings
def test_warn():
pytest.warns(UserWarning, warnings.warn('Warning!'))