test: '{. -> ./mod}/test_util_jsoncomm.py'

Move the jsoncomm-test to the other module-level tests and align its
implementation with the others.
This commit is contained in:
David Rheinsberg 2020-04-27 16:30:31 +02:00
parent 2e039a778c
commit 1ec3e5a776

View file

@ -2,11 +2,11 @@
# Tests for the 'osbuild.util.jsoncomm' module.
#
import asyncio
import os
import tempfile
import unittest
from osbuild.util import jsoncomm
@ -153,7 +153,3 @@ class TestUtilJsonComm(unittest.TestCase):
msg = self.client.recv()
assert msg[0] == {}
if __name__ == "__main__":
unittest.main()