Skip to content

Commit

Permalink
Replace 'assertTrue' with 'assertIn'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Jan 18, 2024
1 parent 72a15c8 commit e09fe35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_wifi_essid.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_common_essid(self):
"""

for _ in range(10):
self.assertTrue(self.fake.common_essid() in COMMON_ESSIDS)
self.assertIn(self.fake.common_essid(), COMMON_ESSIDS)

def test_upc_default_essid(self):
"""
Expand Down

0 comments on commit e09fe35

Please sign in to comment.