Skip to content

Commit

Permalink
test(distribution): fix wrong parameter order (#1249)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum authored Oct 30, 2024
1 parent d5f8501 commit 4e25762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/distribution/test_xmllib.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_xmllib() -> None:
root = XMLRoot("0000", "my_onto")
my_res = Resource.new("my_res", "restype", "label")
if is_bool_like("0"):
my_res.add_bool(convert_to_bool_string("0"), "my_prop")
my_res.add_bool("my_prop", convert_to_bool_string("0"))
my_res.add_file("my_file")
annotation = AnnotationResource.new("res_id", "label", "annotation_of", ["comment1", "comment2"])
root.add_resource(annotation)
Expand Down

0 comments on commit 4e25762

Please sign in to comment.