Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mKlapwijk committed Aug 2, 2024
1 parent a357e09 commit e36e15e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/business/entities/rules/test_depth_average_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def test_depth_average_rule(
logger = Mock(ILogger)
rule = DepthAverageRule(
name="test",
input_variable_names=["foo"],
input_variable_names=["foo", "mesh2d_interface_z"],
)

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

# Create dataset
Expand Down

0 comments on commit e36e15e

Please sign in to comment.