Skip to content

Commit

Permalink
whoops update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kavigupta committed Jul 13, 2020
1 parent edbd632 commit 4937aae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/end_to_end/encryption_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ def testDecryptMessages(self):

stdout, stderr = self.run_ok('--decrypt', *keys.values())
self.assertEqual("", stderr)
self.assertIn("All files are already decrypted", stdout)
self.assertIn("All files are decrypted", stdout)

stdout, stderr = self.run_ok('--decrypt')
self.assertEqual("", stderr)
self.assertIn("All files are already decrypted", stdout)
self.assertIn("All files are decrypted", stdout)

def testDecryptWithEndpoints(self):
self.copy_examples()
Expand Down

0 comments on commit 4937aae

Please sign in to comment.