Selenium Python - Data-Driven Testing
Given this data-driven test snippet, what will be the output if the test runs with inputs [2, 4, 6] and asserts input % 2 == 0?
```python
@pytest.mark.parametrize('num', [2, 4, 6])
def test_even(num):
assert num % 2 == 0
```
