Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 6, 2025
1 parent 06e0fa8 commit 036196d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/robottelo/test_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 036196d

Please sign in to comment.