Fix deprecation warning in test (#25506)

This commit is contained in:
Paulus Schoutsen 2019-07-26 17:40:40 -07:00 committed by GitHub
parent 0df1bb5029
commit 297cd3dc13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,7 @@ class HomeAssistantHTTP:
for the redirect, otherwise it has to be a string with placeholders in for the redirect, otherwise it has to be a string with placeholders in
rule syntax. rule syntax.
""" """
def redirect(request): async def redirect(request):
"""Redirect to location.""" """Redirect to location."""
raise HTTPMovedPermanently(redirect_to) raise HTTPMovedPermanently(redirect_to)