Quiz
Patching the Right Namespace in pytest
Understanding where to patch when mocking dependencies in pytest tests.
In module app/service.py you have `from app.clients import fetch_data`, and you call `fetch_data()` inside a function `run()`. When writing a pytest test that mocks the network call, which target should you patch with unittest.mock so `run()` uses the mock?