From c9e907aaefa2a0b6e42ad07a1d91a7847bb4d2f7 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Wed, 24 Jul 2024 01:24:22 -0400 Subject: [PATCH] fix test --- test/test_block.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_block.py b/test/test_block.py index 9e47b02..c99df6d 100644 --- a/test/test_block.py +++ b/test/test_block.py @@ -106,8 +106,8 @@ def test_load_write(tmp_path): assert isinstance(TestBlock.r.params["ri"], MFInteger) assert isinstance(TestBlock.r.params["rd"], MFDouble) - assert isinstance(block.r, list) - assert block.r == [True, 2, 2.0] + assert isinstance(block.r, dict) + assert block.r == {"rd": 2.0, "ri": 2, "rk": True} # test block write fpth2 = tmp_path / f"{name}2.txt"