Fix parametrize warning in unit tests.

pull/46299/merge
Matt Clay 6 years ago
parent e5878d19de
commit 1a28898a00

@ -965,7 +965,7 @@ PRIVACY_POLICY_URL="http://www.intel.com/privacy"
]
@pytest.mark.parametrize("stdin, testcase", product([{}], TESTSETS), ids=lambda x: x['name'], indirect=['stdin'])
@pytest.mark.parametrize("stdin, testcase", product([{}], TESTSETS), ids=lambda x: x.get('name'), indirect=['stdin'])
def test_distribution_version(am, mocker, testcase):
"""tests the distribution parsing code of the Facts class

Loading…
Cancel
Save