diff --git a/pulp_smash/tests/rpm/api_v2/test_download_policies.py b/pulp_smash/tests/rpm/api_v2/test_download_policies.py index 5ba21e99b..4edb68566 100644 --- a/pulp_smash/tests/rpm/api_v2/test_download_policies.py +++ b/pulp_smash/tests/rpm/api_v2/test_download_policies.py @@ -207,7 +207,7 @@ def test_rpm_cache_control_header(self): headers = self.rpm.headers self.assertIn(key, headers) self.assertEqual( - headers[key].split(', '), + set(headers[key].split(', ')), {'s-maxage=86400', 'public', 'max-age=86400'}, headers, )