PyTest - Parametrize
Given the code below, what will be the test ID shown for the second test case?
@pytest.mark.parametrize('num', [10, 20], ids=['ten', 'twenty'])
def test_value(num):
assert num > 5
