From 8d1f144f2896b8bf7ea9727f4ec17ed512f11f1e Mon Sep 17 00:00:00 2001 From: Purnendu Chakraborty Date: Tue, 1 Oct 2024 08:21:50 -0400 Subject: [PATCH] bug fix --- tests/test_component.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_component.py b/tests/test_component.py index b7ecbab4..74344e68 100644 --- a/tests/test_component.py +++ b/tests/test_component.py @@ -64,5 +64,5 @@ def test_MepoComponent(): for name, comp in registry.items(): if name == "fvdycore": fvdycore = MepoComponent().registry_to_component(name, comp, None) - assert fvdycore == get_fvdycore_component + assert fvdycore == get_fvdycore_component() assert fvdycore.serialize() == get_fvdycore_serialized()