From 61fa83a00d81e8967f13966bab99e898b93552f3 Mon Sep 17 00:00:00 2001 From: Marek Wolan Date: Thu, 31 Aug 2023 14:55:14 +0100 Subject: [PATCH] Fix failing test --- tests/unit_tests/_primaite/_simulator/test_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/_primaite/_simulator/test_core.py b/tests/unit_tests/_primaite/_simulator/test_core.py index bbb1298f..069e6ea2 100644 --- a/tests/unit_tests/_primaite/_simulator/test_core.py +++ b/tests/unit_tests/_primaite/_simulator/test_core.py @@ -44,4 +44,4 @@ class TestIsolatedSimComponent: comp = TestComponent(name="computer", size=(5, 10)) dump = comp.model_dump_json() reconstructed = TestComponent.model_validate_json(dump) - assert comp == reconstructed.model_dump_json() + assert dump == reconstructed.model_dump_json()