From 8f4eeecf51c439aac5492deadadc2c559b796629 Mon Sep 17 00:00:00 2001 From: cisphyx Date: Mon, 20 Jan 2025 17:37:10 -0500 Subject: [PATCH] fix test --- synapse/tests/test_cortex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/tests/test_cortex.py b/synapse/tests/test_cortex.py index 2f61cead2f..b7dd4f518a 100644 --- a/synapse/tests/test_cortex.py +++ b/synapse/tests/test_cortex.py @@ -3107,8 +3107,8 @@ async def test_cortex_model_dict(self): self.nn(model['univs'].get('.created')) self.nn(model['univs'].get('.seen')) - self.true(model['types']['edge'].get('deprecated')) - self.true(model['types']['timeedge'].get('deprecated')) + self.true(model['types']['edge']['info'].get('deprecated')) + self.true(model['types']['timeedge']['info'].get('deprecated')) async def test_storm_graph(self):