Skip to content

Commit

Permalink
Update some unit test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
DonGiovanni83 committed Dec 6, 2024
1 parent c210ba4 commit a5df6b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit/plugins/module_utils/test_xml_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@ def test_elements_equal_without_children_none_and_1():
def test_elements_equal_with_children():
"""
Tests elements_equal function matches recursively equal elements.
Elements having children with the same content should be equal.
"""
e1 = Element("test")
e1c1 = Element("child_1")
Expand All @@ -468,7 +469,8 @@ def test_elements_equal_with_children():

def test_elements_not_equal_with_children():
"""
Tests elements_equal function checks recursively elements.
Tests elements_equal function checks elements recursively.
Elements having children with different content should not be equal.
"""
e1 = Element("test")
e1c1 = Element("child_1")
Expand Down

0 comments on commit a5df6b8

Please sign in to comment.