From: =?utf-8?q?Stephan_S=C3=BCrken?= <absurd@olurdix.de>
Date: Wed, 17 Jul 2019 18:55:50 +0200
Subject: django 2.0: is_authenticated() is now a property.

See: https://docs.djangoproject.com/en/2.2/releases/2.0/#features-removed-in-2-0
---
 registration/tests/test_simple_workflow.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/registration/tests/test_simple_workflow.py b/registration/tests/test_simple_workflow.py
index 9dc50a5..a7c3bab 100644
--- a/registration/tests/test_simple_workflow.py
+++ b/registration/tests/test_simple_workflow.py
@@ -53,4 +53,4 @@ class SimpleWorkflowViewTests(WorkflowTestCase):
 
         # New user must be logged in.
         resp = self.client.get(reverse('registration_register'))
-        self.assertTrue(resp.context['user'].is_authenticated())
+        self.assertTrue(resp.context['user'].is_authenticated)
