Skip to content

Commit 78bfa6c

Browse files
Jon Beilkephilpep
authored andcommitted
use == for int comparison in tests
1 parent 87b30d8 commit 78bfa6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_modules.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,8 @@ def test_user(host):
272272

273273

274274
def test_user_password_days(host):
275-
assert host.user("root").password_max_days is 99999
276-
assert host.user("root").password_min_days is 0
275+
assert host.user("root").password_max_days == 99999
276+
assert host.user("root").password_min_days == 0
277277
assert host.user("user").password_max_days == 90
278278
assert host.user("user").password_min_days == 7
279279

0 commit comments

Comments
 (0)