Skip to content

Commit

Permalink
Fixed package count in unittest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 14, 2024
1 parent c66fbcf commit b16ce1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/Packaging/__init__.py
Expand Up @@ -74,7 +74,7 @@ def test_loadRequirements(self) -> None:
from pyTooling.Packaging import loadRequirementsFile

requirements = loadRequirementsFile(Path("doc/requirements.txt"))
self.assertEqual(11, len(requirements))
self.assertEqual(13, len(requirements))

@mark.xfail(CurrentPlatform.IsMSYS2Environment and version_info > (3, 9), reason="Can fail on MSYS2 environment with Python 3.10+.")
def test_loadRequirementsGit(self) -> None:
Expand Down

0 comments on commit b16ce1e

Please sign in to comment.