fix old SASL callback test failure

This commit is contained in:
Kenneth Giusti 2016-08-04 13:26:50 -04:00
parent 87a70cb950
commit 6998edc414
1 changed files with 2 additions and 2 deletions

View File

@ -240,11 +240,11 @@ class APITest(common.Test):
raise common.Skipped("Test does not apply")
server_props = {'x-server': True,
'x-require-auth': True,
'x-sasl-mechs': 'PLAIN'}
'x-sasl-mechs': 'PLAIN ANONYMOUS'}
client_props = {'x-server': False,
'x-username': 'user-foo',
'x-password': 'pass-word',
'x-sasl-mechs': 'PLAIN'}
'x-sasl-mechs': 'PLAIN ANONYMOUS'}
class SaslCallbackServer(common.ConnCallback):
def sasl_step(self, connection, pn_sasl):