Skip to content

Commit

Permalink
Fix: Unittests for java 12 and 13.
Browse files Browse the repository at this point in the history
  • Loading branch information
Labbeti committed May 24, 2023
1 parent 6ee071c commit 6aa531b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def test_check_java_versions(self) -> None:
("9.0.0", True),
("10.0.0", True),
("11.0.0", True),
("12.0.0", False),
("12.0.0", True),
("13.0.0", True),
("14.0.0", False),
("17.0.0", False),
("20.0.0", False),
]
Expand Down

0 comments on commit 6aa531b

Please sign in to comment.