From a8065793e7118c47fc71edc4c02447ef4b665209 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 29 Apr 2022 13:28:02 -0400 Subject: [PATCH] test: fix KeyError in test_rest_streaming.py --- tests/unit/test_rest_streaming.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/test_rest_streaming.py b/tests/unit/test_rest_streaming.py index 1b34a04f..a44c83c0 100644 --- a/tests/unit/test_rest_streaming.py +++ b/tests/unit/test_rest_streaming.py @@ -28,6 +28,7 @@ from google.protobuf import timestamp_pb2 +__protobuf__ = proto.module(package=__name__) SEED = int(time.time()) logging.info(f"Starting rest streaming tests with random seed: {SEED}") random.seed(SEED)