We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f118d6c commit 5e0fd6eCopy full SHA for 5e0fd6e
1 file changed
bioformats/tests/test_omexml.py
@@ -46,13 +46,13 @@ def test_02_01_iter_children(self):
46
def test_02_02_get_text(self):
47
o = O.OMEXML(TIFF_XML)
48
ad = o.root_node.find(
49
- "/".join([O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquiredDate")]))
+ "/".join([O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquisitionDate")]))
50
self.assertEqual(O.get_text(ad), "2008-02-05T17:24:46")
51
52
def test_02_04_set_text(self):
53
54
ad = o.root_node.find("/".join(
55
- [O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquiredDate")]))
+ [O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquisitionDate")]))
56
im = o.root_node.find(O.qn(o.get_ns("ome"), "Image"))
57
O.set_text(im, "Foo")
58
self.assertEqual(O.get_text(im), "Foo")
0 commit comments