jarus / flask-testing

Unittest extensions for Flask
http://pythonhosted.org/Flask-Testing/
Other
501 stars 110 forks source link

assertTemplateUsed mangles template names in failure message #127

Open davewsmith opened 6 years ago

davewsmith commented 6 years ago

Mistyped a template name in an assertTemplateUsed call, and got

AssertionError: Template ndex.html not used. Templates were used: [ < T e m p l a t e   ' i n d e x . h t m l ' > ]

' '.join(repr(used_templates)) in assertTemplateUsed is the culprit.

PR with fix momentarily.