1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-27 14:08:53 +00:00

Remove unittest.main() calls (#11304)

Remove unittest.main() calls.
This commit is contained in:
Felix Fontein 2025-12-22 15:47:42 +01:00 committed by GitHub
parent 2c6746ffa0
commit 02b185932c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 0 additions and 171 deletions

View file

@ -4,7 +4,6 @@
from __future__ import annotations
import unittest
from contextlib import contextmanager
from io import StringIO
from itertools import count
@ -308,7 +307,3 @@ class TestKeycloakComponent(ModuleTestCase):
# Verify that the module's changed status matches what is expected
self.assertIs(exec_info.exception.args[0]["changed"], changed)
if __name__ == "__main__":
unittest.main()