diff --git a/tests/test_recaptcha.py b/tests/test_recaptcha.py index d752e0aa..644dceab 100644 --- a/tests/test_recaptcha.py +++ b/tests/test_recaptcha.py @@ -24,7 +24,7 @@ def create_app(self): app.config['RECAPTCHA_PRIVATE_KEY'] = RECAPTCHA_PRIVATE_KEY @app.route("/", methods=("GET", "POST")) - def inex(): + def index(): form = RecaptchaFrom(csrf_enabled=False) if form.validate_on_submit(): return 'OK'