openbsd-ports/www/py-flask/patches/patch-flask_testsuite_signals_py
fgsch e110994f93 Update to Flask 0.10.1. Fix docs installation path.
Similar diff also submitted by frantisek holop.  input and ok jasper@
2013-12-25 18:45:12 +00:00

13 lines
502 B
Plaintext

$OpenBSD: patch-flask_testsuite_signals_py,v 1.1 2013/12/25 18:45:12 fgsch Exp $
--- flask/testsuite/signals.py.orig Mon Dec 23 21:23:03 2013
+++ flask/testsuite/signals.py Mon Dec 23 21:23:54 2013
@@ -102,7 +102,7 @@ class SignalsTestCase(FlaskTestCase):
def record_push(sender, **kwargs):
recorded.append('push')
def record_pop(sender, **kwargs):
- recorded.append('push')
+ recorded.append('pop')
@app.route('/')
def index():