We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668cb33 commit 80ea912Copy full SHA for 80ea912
tests/unit/ext/test_flask_py2_py3.py
@@ -11,7 +11,7 @@ def index():
11
return "Hello World!"
12
13
14
-def test():
+def _test():
15
return "Test!"
16
17
@@ -25,7 +25,7 @@ class ApplicationContainer(containers.DeclarativeContainer):
25
app = flask.Application(Flask, __name__)
26
27
index_view = flask.View(index)
28
- test_view = flask.View(test)
+ test_view = flask.View(_test)
29
test_class_view = flask.ClassBasedView(Test)
30
31
0 commit comments