From 08473760c4869f65e186bd9925c080539bb6ff29 Mon Sep 17 00:00:00 2001 From: Dobson Date: Wed, 11 Dec 2024 16:45:35 +0000 Subject: [PATCH] add growing specific param --- tests/test_land.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_land.py b/tests/test_land.py index 0430cb3..c5698d0 100644 --- a/tests/test_land.py +++ b/tests/test_land.py @@ -1484,6 +1484,7 @@ def test_apply_surface_overrides(tmp_path): "surface": "Woodland", "type_": "GrowingSurface", "area": 1000, + "rooting_depth": 0.1, } }, "percolation_residence_time": 1, @@ -1513,6 +1514,7 @@ def test_apply_surface_overrides(tmp_path): assert model.nodes["land1"].get_surface("Grass").area == 200 assert model.nodes["land1"].get_surface("Grass").datum == 20 assert model.nodes["land1"].get_surface("Woodland").area == 1000 + assert model.nodes["land1"].get_surface("Woodland").rooting_depth == 0.1 if __name__ == "__main__":