Skip to content

Commit 995e549

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6cfa5f7 commit 995e549

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

config_generation/tests/test_db_to_xml.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#docker-compose -f local.yml run --rm django pytest config_generation/tests/test_db_to_xml.py
1+
# docker-compose -f local.yml run --rm django pytest config_generation/tests/test_db_to_xml.py
22
from xml.etree.ElementTree import ElementTree, ParseError, fromstring
33

44
import pytest
@@ -85,21 +85,23 @@ def test_add_new_element():
8585
updated_xml = editor.update_config_xml()
8686
assert "Value" in updated_xml and "<newchild>Value</newchild>" in updated_xml
8787

88+
8889
def test_add_third_level_hierarchy():
8990
xml_string = "<root></root>"
9091
editor = XmlEditor(xml_string)
9192
editor.update_or_add_element_value("parent/child/grandchild", "DeeplyNested")
9293
updated_xml = editor.update_config_xml()
9394
root = fromstring(updated_xml)
94-
grandchild = root.find('.//grandchild')
95+
grandchild = root.find(".//grandchild")
9596
assert grandchild is not None, "Grandchild element not found"
9697
assert grandchild.text == "DeeplyNested", "Grandchild does not contain the correct text"
97-
98+
9899
# Check complete path
99-
parent = root.find('.//parent/child/grandchild')
100+
parent = root.find(".//parent/child/grandchild")
100101
assert parent is not None, "Complete path to grandchild not found"
101102
assert parent.text == "DeeplyNested", "Complete path to grandchild does not contain correct text"
102103

104+
103105
# Test transformations and generic mapping
104106
def test_convert_indexer_to_scraper_transformation():
105107
xml_string = """<root><Plugin>Indexer</Plugin></root>"""

0 commit comments

Comments
 (0)