PyTest - Writing Assertions
Which of the following correctly describes this test code?
import pytest
def test_type_error():
with pytest.raises(TypeError):
sum(5)