diff --git a/tests/robottelo/test_decorators.py b/tests/robottelo/test_decorators.py index f4b2243461..f5f9273d21 100644 --- a/tests/robottelo/test_decorators.py +++ b/tests/robottelo/test_decorators.py @@ -34,7 +34,7 @@ def test_create_and_not_add_to_cache(self, make_foo): def test_build_cache(self, make_foo): """Create a new object and add it to the cache.""" obj = make_foo(cached=True) - assert {'foo': {'id': 42}} == decorators.OBJECT_CACHE + assert decorators.OBJECT_CACHE == {'foo': {'id': 42}} assert id(decorators.OBJECT_CACHE['foo']) == id(obj) def test_return_from_cache(self, make_foo):