Skip to content

Commit

Permalink
Correct test result dependent on sort order.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Jul 24, 2024
1 parent ab7bb5f commit e2fc32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/platforms/macOS/app/test_signing.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,6 @@ def _codesign(args, **kwargs):
# coverage we need to. However, win32 doesn't handle executable permissions
# the same as linux/unix, `unknown.binary` is identified as a signing target.
# We ignore this discrepancy for testing purposes.
assert len(output.strip("\n").split("\n")) == (11 if verbose else 1)
assert len(output.strip("\n").split("\n")) == (9 if verbose else 1)
else:
assert len(output.strip("\n").split("\n")) == (10 if verbose else 1)
assert len(output.strip("\n").split("\n")) == (8 if verbose else 1)

0 comments on commit e2fc32f

Please sign in to comment.