Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaublitz committed Mar 27, 2023
1 parent 3d49d61 commit 9331a20
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/client-dbus/tests/udev/test_udev.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,15 +696,13 @@ def _simple_start_by_name_test(self):

((changed, _), exit_code, _) = Manager.Methods.StopPool(
get_object(TOP_OBJECT),
{"id": "encrypted"},
{"id_type": "name"},
{"id": "encrypted", "id_type": "name"},
)
self.assertEqual(exit_code, 0)
self.assertEqual(changed, True)
((changed, _), exit_code, _) = Manager.Methods.StopPool(
get_object(TOP_OBJECT),
{"id": "unencrypted"},
{"id_type": "name"},
{"id": "unencrypted", "id_type": "name"},
)
self.assertEqual(exit_code, 0)
self.assertEqual(changed, True)
Expand Down

0 comments on commit 9331a20

Please sign in to comment.