Fix broken test_appcontext_signals test case

This fixes #781 and ensures that Flask is tested with blinker installed.
This commit is contained in:
Daniel Neuhäuser 2013-06-27 16:49:27 +02:00
parent d94b1bec24
commit f88cc2d2f9
6 changed files with 17 additions and 1 deletions

View file

@ -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():