We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f955d1 commit 1277cd7Copy full SHA for 1277cd7
tests/test_examples.py
@@ -252,7 +252,7 @@ def test_register_cycif(max_error=3):
252
cnames_df = pd.DataFrame(expected_channel_order, columns=['cname'])
253
expected_channel_order = list(cnames_df.drop_duplicates(keep="first")['cname'])
254
255
- saved_ome_xml = ome_types.from_tiff(dst_f)
+ saved_ome_xml = ome_types.from_xml(ome_xml)
256
saved_channel_names = [x.name for x in saved_ome_xml.images[0].pixels.channels]
257
258
assert np.all(expected_channel_order == saved_channel_names), (f"Channels not saved in correct order.\n"
0 commit comments