Skip to content

Commit

Permalink
use == for int comparison in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Beilke authored and philpep committed Feb 5, 2022
1 parent 87b30d8 commit 78bfa6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ def test_user(host):


def test_user_password_days(host):
assert host.user("root").password_max_days is 99999
assert host.user("root").password_min_days is 0
assert host.user("root").password_max_days == 99999
assert host.user("root").password_min_days == 0
assert host.user("user").password_max_days == 90
assert host.user("user").password_min_days == 7

Expand Down

0 comments on commit 78bfa6c

Please sign in to comment.