Skip to content

Commit

Permalink
fix: fixes from smoke testing
Browse files Browse the repository at this point in the history
  • Loading branch information
micha91 committed Aug 30, 2024
1 parent e9d5527 commit 3aca141
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capella2polarion/connectors/polarion_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def load_polarion_work_item_map(self):
"""Return a map from Capella UUIDs to Polarion work items."""
work_items = self.project_client.work_items.get_all(
"HAS_VALUE:uuid_capella",
{"workitems": "id,uuid_capella,checksum,status,type"},
fields={"workitems": "id,uuid_capella,checksum,status,type"},
)
self.polarion_data_repo.update_work_items(work_items)

Expand Down
2 changes: 1 addition & 1 deletion capella2polarion/converters/polarion_html_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def remove_table_ids(

for element in html_fragments:
if element.tag == "table":
element.remove("id")
element.attrib.pop("id", None)

return html_fragments

Expand Down

0 comments on commit 3aca141

Please sign in to comment.