Skip to content

Commit

Permalink
Fixes failing tests following refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
MoseleyS committed Sep 21, 2023
1 parent 240ed3d commit 4a55f1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions improver_tests/acceptance/test_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ def test_without_optional_input(tmp_path):
("bad_wx_decision_tree.json", "Unreachable node 'unreachable'"),
),
)
def test_trees(wxtree, expected):
def test_trees(decision_tree, expected):
"""Test the check-tree option"""
kgo_dir = acc.kgo_root() / "wxcode"
args = [
"--decision-tree",
kgo_dir / wxtree,
kgo_dir / decision_tree,
"--check-tree",
"--target-period",
"3600",
Expand Down
2 changes: 1 addition & 1 deletion improver_tests/developer_tools/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
set_up_probability_cube,
set_up_variable_cube,
)
from improver.wxcode.utilities import weather_code_attributes
from improver.categorical.utilities import weather_code_attributes


def _update_blended_time_coords(cube):
Expand Down

0 comments on commit 4a55f1f

Please sign in to comment.