Skip to content

Commit

Permalink
change updateable static variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sjordan29 committed Apr 23, 2024
1 parent 33a748f commit 82a7ba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_6_nsm_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
)

Expand All @@ -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
Expand Down

0 comments on commit 82a7ba9

Please sign in to comment.