Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgear committed Jan 7, 2024
1 parent 833302f commit c5832ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unit_tests/test_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def test_get_info() -> None:

assert i["implementation_name"] == "myntp"
assert i["implementation_version"] == "1.2.3-beta1"
assert i["resident_set_size"] > 1000
assert i["uptime"] > 0.000001
assert i["virtual_memory_size"] > i["resident_set_size"]
assert i["ntpmon_rss"] > 1000
assert i["ntpmon_uptime"] > 0.000001
assert i["ntpmon_vms"] > i["ntpmon_rss"]
assert [int(x) for x in i["python_version"].split(".")] >= [3, 8, 0]


Expand Down

0 comments on commit c5832ff

Please sign in to comment.