diff options
author | NavaL <ayoyo@thoughtworks.com> | 2016-06-24 19:25:39 +0200 |
---|---|---|
committer | NavaL <ayoyo@thoughtworks.com> | 2016-06-24 19:25:39 +0200 |
commit | b4add4e3481ef5a3d53f8af0739bc3b8048d32bf (patch) | |
tree | 6c4ce514a971ad0f5904af03b0a688dbdba0ce40 /service/test | |
parent | 64c54186eff000762c291758973ca8e5db28f606 (diff) |
added dummy user attribute to SRPsession as the constructor changed -- fixing build -- Issue #694
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/support/integration/app_test_client.py | 2 |
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)) |