From 485395c12368fc0f4827e69f38643a5dea060878 Mon Sep 17 00:00:00 2001 From: Doug Beatty Date: Tue, 31 Oct 2023 16:33:40 -0600 Subject: [PATCH] Fix unit test for new TypeCodeNotFound event --- tests/unit/test_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_events.py b/tests/unit/test_events.py index 23f3fac2770..97debf74c2a 100644 --- a/tests/unit/test_events.py +++ b/tests/unit/test_events.py @@ -193,7 +193,7 @@ def test_event_codes(self): types.FinishedRunningStats(stat_line="", execution="", execution_time=0), types.ConstraintNotEnforced(constraint="", adapter=""), types.ConstraintNotSupported(constraint="", adapter=""), - types.TypeCodeNotFound(type_code=""), + types.TypeCodeNotFound(type_code=0), # I - Project parsing ====================== types.InputFileDiffError(category="testing", file_id="my_file"), types.InvalidValueForField(field_name="test", field_value="test"),