Skip to content

Commit

Permalink
Renames test_logout to test_zlogout
Browse files Browse the repository at this point in the history
This helps to run the test always at the end. As this logouts
the current test user, if any tests run after this test, they
will fail.
  • Loading branch information
kushaldas committed Jun 10, 2019
1 parent d134120 commit 880635d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def test_delete_reply(self):
self.assertEqual(len(self.api.get_all_replies()), number_of_replies_before - 1)

@vcr.use_cassette("data/test-logout.yml")
def test_logout(self):
def test_zlogout(self):
r = self.api.logout()
self.assertTrue(r)

Expand Down

0 comments on commit 880635d

Please sign in to comment.