Skip to content

Commit

Permalink
test: improved liburing version check test
Browse files Browse the repository at this point in the history
  • Loading branch information
YoSTEALTH committed Feb 4, 2024
1 parent 4d8cfdd commit 8fcbcc5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@


def test_liburing_version():
assert liburing_major_version() == 2
# assert liburing_minor_version() == 5
assert liburing_minor_version() == 6
assert liburing_check_version(3, 0) is True
assert liburing_major_version() >= 2 and liburing_minor_version() >= 4
# checks if liburing version is == or > than installed version.
assert liburing_check_version(5, 0) is True

0 comments on commit 8fcbcc5

Please sign in to comment.