PyTest - Fixtures
Given this fixture factory and test, what will be the output?
```python
import pytest
@pytest.fixture
def multiply_factory():
def multiply(x, y):
return x * y
return multiply
def test_multiply(multiply_factory):
assert multiply_factory(3, 4) == 12
```
