Skip to content

Commit

Permalink
fix(test): Properly stop method mock
Browse files Browse the repository at this point in the history
* Card ID: CCT-508
  • Loading branch information
m-horky committed May 21, 2024
1 parent 3cc6ee7 commit f18d6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/rhsmlib/dbus/test_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def setUpClass(cls) -> None:
name="get_consumer_uuid",
)
cls.patches["get_consumer_uuid"] = get_consumer_uuid_patch.start()
cls.addClassCleanup(get_consumer_uuid_patch)
cls.addClassCleanup(get_consumer_uuid_patch.stop)

cls.impl = ConsumerDBusImplementation()

Expand Down

0 comments on commit f18d6dc

Please sign in to comment.