Fix parametrize warning in unit tests.

This commit is contained in:
Matt Clay 2018-10-05 16:33:30 -07:00
parent e5878d19de
commit 1a28898a00

View file

@ -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