Change unittest because recipients don't needs to be lists/tuples anymore.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-27 09:13:55 +00:00
parent dad755ec3a
commit a9ea5a1e48
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ transparent multi-hop wireless backhauls that are able to perform statistical
analysis of different kinds of data (temperature, humidity, etc.) coming from
a WSN while ensuring both end-to-end encryption and hop-by-hop
authentication."""
encrypted = str(gpg.encrypt(message, [dijk], ))
encrypted = str(gpg.encrypt(message, dijk))
self.assertNotEqual(message, encrypted)
self.assertNotEqual(encrypted, '')
self.assertGreater(len(encrypted), 0)