input ```python with self.assertRaises(Exception) as ctx: sut() self.assertIn("msg", str(ctx.exception)) ``` expected output ```python with pytest.raises(Exception) as ctx: sut() assert "msg" in str(ctx.value) ```