Skip to content

Commit

Permalink
corrected a wrong test assert statement
Browse files Browse the repository at this point in the history
  • Loading branch information
JensWendt committed Aug 23, 2024
1 parent bb72dc6 commit c73c6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_puts.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_put_map_annotation(conn, project_structure, users_groups):
"key2": "value2"}
ezomero.put_map_annotation(conn, map_ann_id, kv)
kv_pairs = ezomero.get_map_annotation(conn, map_ann_id)
assert kv_pairs['key1'][0] == kv['key1']
assert kv_pairs['key1'] == kv['key1']

# test cross-group
kv = {"key1": "value1",
Expand Down

0 comments on commit c73c6a7

Please sign in to comment.