Selenium Python - Data-Driven Testing
Given this pytest data-driven test snippet, what will be the output if the test fails for input 3?
import pytest
@pytest.mark.parametrize('num', [1, 2, 3])
def test_is_even(num):
assert num % 2 == 0