From 8fa3ed13bf362a71f942ed3d37efbdbdd5731375 Mon Sep 17 00:00:00 2001 From: Dilan Coss Date: Tue, 29 May 2018 09:51:08 -0600 Subject: [PATCH] details fixed --- tests/test_appctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_appctx.py b/tests/test_appctx.py index 0ce0431d..251764cf 100644 --- a/tests/test_appctx.py +++ b/tests/test_appctx.py @@ -160,7 +160,7 @@ def test_app_ctx_globals_methods(app, app_ctx): # __iter__ assert list(flask.g) == ['foo'] #__repr__ - assert flask.g.__repr__() == '' + assert repr(flask.g) == "" def test_custom_app_ctx_globals_class(app):