From 504367e1471d1f08f196d13b6dd3cd952c6b3ec1 Mon Sep 17 00:00:00 2001 From: edavalosanaya Date: Mon, 6 Nov 2023 11:32:10 -0600 Subject: [PATCH] Added more tests. --- test/test_bridge.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/test_bridge.py b/test/test_bridge.py index 953097a..71ca939 100644 --- a/test/test_bridge.py +++ b/test/test_bridge.py @@ -263,14 +263,14 @@ async def test_local_buses_comms_client_to_server( "event_type, func, dtype, dtype_instance", [ ("test", func, ExampleEvent, ExampleEvent("Hello")), - # ("test_str", func_str, str, "Hello"), - # ("test_bytes", func_bytes, bytes, b"Hello"), - # ("test_list", func_list, List, ["Hello"]), - # ("test_int", func_int, int, 1), - # ("test_float", func_float, float, 1.0), - # ("test_bool", func_bool, bool, True), - # ("test_none", func_none, None, None), - # ("test_dict", func_dict, dict, {"hello": "world"}), + ("test_str", func_str, str, "Hello"), + ("test_bytes", func_bytes, bytes, b"Hello"), + ("test_list", func_list, List, ["Hello"]), + ("test_int", func_int, int, 1), + ("test_float", func_float, float, 1.0), + ("test_bool", func_bool, bool, True), + ("test_none", func_none, None, None), + ("test_dict", func_dict, dict, {"hello": "world"}), ], ) async def test_local_buses_comms_bidirectional(event_type, func, dtype, dtype_instance):