Skip to content

Commit 5e0fd6e

Browse files
author
Lee Kamentsky
committed
oops more unit test corrections needed
1 parent f118d6c commit 5e0fd6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bioformats/tests/test_omexml.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ def test_02_01_iter_children(self):
4646
def test_02_02_get_text(self):
4747
o = O.OMEXML(TIFF_XML)
4848
ad = o.root_node.find(
49-
"/".join([O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquiredDate")]))
49+
"/".join([O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquisitionDate")]))
5050
self.assertEqual(O.get_text(ad), "2008-02-05T17:24:46")
5151

5252
def test_02_04_set_text(self):
5353
o = O.OMEXML(TIFF_XML)
5454
ad = o.root_node.find("/".join(
55-
[O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquiredDate")]))
55+
[O.qn(o.get_ns('ome'), x) for x in ("Image", "AcquisitionDate")]))
5656
im = o.root_node.find(O.qn(o.get_ns("ome"), "Image"))
5757
O.set_text(im, "Foo")
5858
self.assertEqual(O.get_text(im), "Foo")

0 commit comments

Comments
 (0)