From 7f61b4011a00a1b89c1b67922a92da09b1689fc9 Mon Sep 17 00:00:00 2001
From: Ivan Kanakarakis <ivan.kanak@gmail.com>
Date: Thu, 7 Nov 2019 15:36:26 +0200
Subject: [PATCH] Fix deprecation warnings

Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
---
 tests/util.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/util.py b/tests/util.py
index 12d9ec4ca..e6ac37d46 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -469,7 +469,7 @@ def handle_response(self, context):
         auth_info = AuthenticationInformation("test", str(datetime.now()), "test_issuer")
         internal_resp = InternalData(auth_info=auth_info)
         internal_resp.attributes = context.request
-        internal_resp.user_id = "test_user"
+        internal_resp.subject_id = "test_user"
         return self.auth_callback_func(context, internal_resp)