This commit is contained in:
Kovid Goyal 2022-12-11 20:55:06 +05:30
parent bd70100e09
commit 032e01ebf7
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -13,4 +13,5 @@ def test_num_users(self):
expected = subprocess.check_output(['who']).decode('utf-8').count('\n')
except FileNotFoundError:
self.skipTest('No who executable cannot verify num_users')
self.ae(num_users(), expected)
else:
self.ae(num_users(), expected)