Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
Use Assert.false(x) instead of Assert.true(not x)
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Mar 3, 2012
1 parent d0e6b85 commit 15294f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_login_logout.py
Expand Up @@ -22,4 +22,4 @@ def test_logout(self, mozwebqa):
home_pg.login_region.login()
Assert.true(home_pg.is_logged_in)
home_pg.login_region.logout()
Assert.true(not home_pg.is_logged_in)
Assert.false(home_pg.is_logged_in)

0 comments on commit 15294f7

Please sign in to comment.