From a1d50fe0eda761f0d4ff2fe06f77528da8834b16 Mon Sep 17 00:00:00 2001 From: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> Date: Tue, 13 May 2025 16:56:23 -0400 Subject: [PATCH] fix (schemas): Backwards compatability for metamessage_type and idiomatic schemas --- tests/routes/test_metamessages.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/routes/test_metamessages.py b/tests/routes/test_metamessages.py index 0a743220..fee481e3 100644 --- a/tests/routes/test_metamessages.py +++ b/tests/routes/test_metamessages.py @@ -432,9 +432,6 @@ async def test_create_metamessage_with_label_and_alias(client, db_session, sampl assert data_from_alias_input["app_id"] == str(test_app.public_id) # Key assertion: The output for the type/label field is consistent ("label") and has the correct value assert data_from_label_input["label"] == data_from_alias_input["label"] - assert ( - data_from_label_input["metamessage_type"] - == data_from_alias_input["metamessage_type"] - ) + assert data_from_label_input["metamessage_type"] == data_from_alias_input["metamessage_type"] assert data_from_label_input["label"] == data_from_label_input["metamessage_type"] assert data_from_alias_input["label"] == data_from_alias_input["metamessage_type"]