Fix call to authenticate_request

This commit is contained in:
Arik Fraimovich
2016-03-09 13:41:33 +02:00
parent 52ad1f1ba1
commit b92fbb489b

View File

@@ -16,7 +16,7 @@ def authenticated_user(c, user=None):
if not user:
user = user_factory.create()
authenticate_request(user)
authenticate_request(c, user)
yield user