r47025 - dont need this
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Fri, 18 Mar 2016 03:52:13 -0600 (MDT)
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl
Date: Fri Mar 18 03:52:09 2016
New Revision: 47025
Modified:
branches/clarity-sshtransport-8237/twisted/conch/test/test_userauth.py
Log:
dont need this
Modified: branches/clarity-sshtransport-8237/twisted/conch/test/test_userauth.py
==============================================================================
--- branches/clarity-sshtransport-8237/twisted/conch/test/test_userauth.py (original)
+++ branches/clarity-sshtransport-8237/twisted/conch/test/test_userauth.py Fri Mar 18 03:52:09 2016
@@ -73,14 +73,14 @@
"""
Return 'foo' as the password.
"""
- return defer.succeed(b'foo')
+ return defer.succeed('foo')
def getGenericAnswers(self, name, information, answers):
"""
Return 'foo' as the answer to two questions.
"""
- return defer.succeed((b'foo', b'foo'))
+ return defer.succeed(('foo', 'foo'))