Skip to content

Commit f489bf7

Browse files
committed
Typo
1 parent d8f1949 commit f489bf7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/unit/experimental/components/test_graph_pruning.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ def test_graph_pruning_filter_properties(
8282
additional_properties: bool,
8383
expected_filtered_properties: dict[str, Any],
8484
) -> None:
85-
prunner = GraphPruning()
86-
filtered_properties = prunner._filter_properties(
85+
pruner = GraphPruning()
86+
filtered_properties = pruner._filter_properties(
8787
properties,
8888
valid_properties,
8989
additional_properties=additional_properties,
@@ -151,8 +151,8 @@ def test_graph_pruning_validate_node(
151151
) -> None:
152152
e = request.getfixturevalue(entity) if entity else None
153153

154-
prunner = GraphPruning()
155-
result = prunner._validate_node(node, PruningStats(), e, additional_node_types)
154+
pruner = GraphPruning()
155+
result = pruner._validate_node(node, PruningStats(), e, additional_node_types)
156156
if expected_node is not None:
157157
assert result == expected_node
158158
else:

0 commit comments

Comments
 (0)