From bec65b8a47d623c85951e9b2b516ac353704f271 Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Fri, 6 Dec 2024 19:28:06 -0600 Subject: [PATCH] Fix event testing --- tests/unit/test_events.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/unit/test_events.py b/tests/unit/test_events.py index e336ad139ff..3d8dfb76916 100644 --- a/tests/unit/test_events.py +++ b/tests/unit/test_events.py @@ -421,6 +421,14 @@ def test_event_codes(self): snapshot_time_data_type="DATETIME", updated_at_data_type="DATETIMEZ" ), core_types.MicrobatchExecutionDebug(msg=""), + core_types.LogStartBatch(description="", batch_index=0, total_batches=0), + core_types.LogBatchResult( + description="", + status="", + batch_index=0, + total_batches=0, + execution_time=0, + ), # W - Node testing ====================== core_types.CatchableExceptionOnRun(exc=""), core_types.InternalErrorOnRun(build_path="", exc=""),