Skip to content

Commit

Permalink
update test depth average
Browse files Browse the repository at this point in the history
  • Loading branch information
mKlapwijk committed Aug 21, 2024
1 parent 44d7fe7 commit eff3a04
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions tests/business/entities/rules/test_depth_average_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ def test_depth_average_rule(
logger = Mock(ILogger)
rule = DepthAverageRule(
name="test",
input_variable_names=["foo", "mesh2d_interface_z"],
bed_level_variable="mesh2d_flowelem_bl",
water_level_variable="mesh2d_s1",
interfaces_variable="mesh2d_interface_z"
input_variable_names=["foo",
"mesh2d_flowelem_bl",
"mesh2d_s1",
"mesh2d_interface_z"],
)

# Create dataset
Expand Down Expand Up @@ -135,7 +135,10 @@ def test_dimension_error():
logger = Mock(ILogger)
rule = DepthAverageRule(
name="test",
input_variable_names=["foo", "mesh2d_interface_z"],
input_variable_names=["foo",
"mesh2d_flowelem_bl",
"mesh2d_s1",
"mesh2d_interface_z"],
)

# Create dataset
Expand Down

0 comments on commit eff3a04

Please sign in to comment.