updated network test to use unittest

This commit is contained in:
UpstreamData
2022-05-25 11:49:28 -06:00
parent 9eb2259aae
commit 6fbd9faffd
2 changed files with 45 additions and 58 deletions

View File

@@ -1,9 +1,7 @@
from tests.network_tests import test_network
import unittest
def test_all():
test_network()
from tests.network_tests import NetworkTest
if __name__ == "__main__":
test_all()
unittest.main()