From c58e9a4f695cdcc5a5301dc7d31b13d744361dc8 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Thu, 24 Aug 2023 11:51:06 -0500 Subject: [PATCH] fix test --- tests/unit/test_events.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/unit/test_events.py b/tests/unit/test_events.py index edcd5c43402..47bb98da036 100644 --- a/tests/unit/test_events.py +++ b/tests/unit/test_events.py @@ -253,7 +253,17 @@ def test_event_codes(self): types.UnsupportedConstraintMaterialization(materialized=""), types.ParseInlineNodeError(exc=""), types.SemanticValidationFailure(msg=""), - types.UnversionedBreakingChange(breaking_changes=[], model_name="", model_file_path=""), + types.UnversionedBreakingChange( + breaking_changes=[], + model_name="", + model_file_path="", + contract_enforced_disabled=True, + columns_removed=[], + column_type_changes=[], + enforced_column_constraint_removed=[], + enforced_model_constraint_removed=[], + materialization_changed=[], + ), # M - Deps generation ====================== types.GitSparseCheckoutSubdirectory(subdir=""), types.GitProgressCheckoutRevision(revision=""),