From 82a7ba9a0921a077ebab4d17636372126bbb4883 Mon Sep 17 00:00:00 2001 From: Sarah Jordan Date: Tue, 23 Apr 2024 11:32:10 -0500 Subject: [PATCH] change updateable static variable --- tests/test_6_nsm_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_6_nsm_module.py b/tests/test_6_nsm_module.py index 144816c..93daf42 100644 --- a/tests/test_6_nsm_module.py +++ b/tests/test_6_nsm_module.py @@ -65,7 +65,7 @@ def nutrient_budget_instance( return NutrientBudget( time_steps=time_steps, initial_state_values=initial_nsm1_state, - updateable_static_variables=['a10'], + updateable_static_variables=['vson'], time_dim='nsm1_time_step', ) @@ -87,7 +87,7 @@ def test_nsm1_specific_attributes(nutrient_budget_instance) -> None: assert isinstance(nutrient_budget_instance.global_parameters, dict) assert isinstance(nutrient_budget_instance.global_vars, dict) - assert nutrient_budget_instance.updateable_static_variables == ['a10'] + assert nutrient_budget_instance.updateable_static_variables == ['vson'] assert nutrient_budget_instance.algae_parameters == DEFAULT_ALGAE assert nutrient_budget_instance.alkalinity_parameters == DEFAULT_ALKALINITY