Selenium Python - Data-Driven Testing
Identify the error in the following parameterized test code:
import pytest
@pytest.mark.parametrize('username, password')
def test_login(username, password):
assert username != '' and password != ''