Fix parametrize warning in unit tests.

(cherry picked from commit 1a28898a00)
This commit is contained in:
Matt Clay 2018-10-05 16:33:30 -07:00
parent 9693c67197
commit 503c4b9f97

View file

@ -943,7 +943,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