Skip to content

Commit

Permalink
minor fix to test
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaDaniel committed May 15, 2024
1 parent 9aa798c commit 7e98b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittests/test_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_parse_raw_nachrichtenstrukturzeile(self):
ExtendedEdifactFormat.UTILMDS,
],
EdifactFormatVersion.FV2310,
[ExtendedEdifactFormat.UTILMDG, ExtendedEdifactFormat.UTILMDS],
[ExtendedEdifactFormat.UTILMDS, ExtendedEdifactFormat.UTILMDG],
id="FV2310",
),
pytest.param(
Expand Down Expand Up @@ -116,4 +116,4 @@ def test_sanitize_message_format(
expected_output: list[ExtendedEdifactFormat],
):
message_format = sanitize_message_format(message_format, format_version)
assert message_format == expected_output
assert sorted(message_format) == sorted(expected_output)

0 comments on commit 7e98b90

Please sign in to comment.