Skip to content

Commit

Permalink
corrected error in test_posts
Browse files Browse the repository at this point in the history
  • Loading branch information
JensWendt committed Jul 30, 2024
1 parent 8a3e8dd commit 970ed3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_post_get_map_annotation(conn, project_structure, users_groups):
map_ann_id = ezomero.post_map_annotation(conn, "Image", im_id, kv, ns)
kv_pairs = ezomero.get_map_annotation(conn, map_ann_id)
assert kv_pairs["key2"] == "value2"
assert kv_pairs["key3"] == ["value3", 123]
assert sorted(kv_pairs["key3"]) == sorted(["value3", "123"])

# Test posting to non-existing object
im_id2 = 999999999
Expand Down

0 comments on commit 970ed3e

Please sign in to comment.