Skip to content

Commit

Permalink
test.adapter.xml: remove 'type: ignore' comments
Browse files Browse the repository at this point in the history
These comments were mistakenly re-added in a previous merge of main into
improve/V30.
  • Loading branch information
jkhsjdhjs authored and s-heppner committed Nov 22, 2023
1 parent de82662 commit 2db802b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/adapter/xml/test_xml_deserialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _assertInExceptionAndLog(self, xml: str, strings: Union[Iterable[str], str],
read_aas_xml_file(bytes_io, failsafe=False)
cause = _root_cause(err_ctx.exception)
for s in strings:
self.assertIn(s, log_ctx.output[0]) # type: ignore
self.assertIn(s, log_ctx.output[0])
self.assertIn(s, str(cause))

def test_malformed_xml(self) -> None:
Expand Down Expand Up @@ -173,7 +173,7 @@ def test_reference_kind_mismatch(self) -> None:
with self.assertLogs(logging.getLogger(), level=logging.WARNING) as context:
read_aas_xml_file(io.BytesIO(xml.encode("utf-8")), failsafe=False)
for s in ("SUBMODEL", "http://acplt.org/test_ref", "AssetAdministrationShell"):
self.assertIn(s, context.output[0]) # type: ignore
self.assertIn(s, context.output[0])

def test_invalid_submodel_element(self) -> None:
xml = _xml_wrap("""
Expand Down Expand Up @@ -255,7 +255,7 @@ def test_operation_variable_too_many_submodel_elements(self) -> None:
""")
with self.assertLogs(logging.getLogger(), level=logging.WARNING) as context:
read_aas_xml_file(io.BytesIO(xml.encode("utf-8")), failsafe=False)
self.assertIn("aas:value", context.output[0]) # type: ignore
self.assertIn("aas:value", context.output[0])
self.assertIn("more than one submodel element", context.output[0])

def test_duplicate_identifier(self) -> None:
Expand Down

0 comments on commit 2db802b

Please sign in to comment.