Skip to content

Commit c21e504

Browse files
Added non-ASCII characters to xml writer test
1 parent 89b7fde commit c21e504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_xml_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def setUp(self):
2020

2121
doc = odml.Document()
2222
sec = doc.create_section(name="sec", type="test")
23-
_ = sec.create_property(name="prop", value=['a', 'b', 'c'])
23+
_ = sec.create_property(name="prop", value=['a', 'b', 'c', 'μ'])
2424

2525
self.doc = doc
2626
self.writer = XMLWriter(doc)

0 commit comments

Comments
 (0)