summaryrefslogtreecommitdiff
path: root/service/test/support
diff options
context:
space:
mode:
authorNavaL <ayoyo@thoughtworks.com>2016-06-24 19:25:39 +0200
committerNavaL <ayoyo@thoughtworks.com>2016-06-24 19:25:39 +0200
commitb4add4e3481ef5a3d53f8af0739bc3b8048d32bf (patch)
tree6c4ce514a971ad0f5904af03b0a688dbdba0ce40 /service/test/support
parent64c54186eff000762c291758973ca8e5db28f606 (diff)
added dummy user attribute to SRPsession as the constructor changed -- fixing build -- Issue #694
Diffstat (limited to 'service/test/support')
-rw-r--r--service/test/support/integration/app_test_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/integration/app_test_client.py b/service/test/support/integration/app_test_client.py
index a66fc62b..c2bf22cb 100644
--- a/service/test/support/integration/app_test_client.py
+++ b/service/test/support/integration/app_test_client.py
@@ -137,7 +137,7 @@ class StubSRPChecker(object):
self._credentials[username] = password
def requestAvatarId(self, credentials):
- leap_auth = SRPSession(credentials.username, uuid.uuid4(), uuid.uuid4(), uuid.uuid4())
+ leap_auth = SRPSession(credentials.username, uuid.uuid4(), uuid.uuid4(), uuid.uuid4(), {})
return defer.succeed(LeapSession(self._leap_provider, leap_auth, None, None, None, None))