diff --git a/tests/i18n/commands/templates/test.html b/tests/i18n/commands/templates/test.html
index bd77728..3292047 100644
a
|
b
|
continued here.{% endcomment %}
|
94 | 94 | line breaks, this time |
95 | 95 | should be trimmed. |
96 | 96 | {% endblocktrans %} |
| 97 | {% trans "I'm on line 97" %} |
diff --git a/tests/i18n/test_extraction.py b/tests/i18n/test_extraction.py
index 8753554..24cbb02 100644
a
|
b
|
class BasicExtractorTests(ExtractorTests):
|
131 | 131 | self.assertNotMsgId('Text with a few line breaks.', po_contents) |
132 | 132 | # should be trimmed |
133 | 133 | self.assertMsgId("Again some text with a few line breaks, this time should be trimmed.", po_contents) |
| 134 | # should adjust for eaten line numbers |
| 135 | self.assertIn( |
| 136 | "#: templates/test.html:97\nmsgid \"I'm on line 97\"", |
| 137 | po_contents) |
134 | 138 | |
135 | 139 | def test_force_en_us_locale(self): |
136 | 140 | """Value of locale-munging option used by the command is the right one""" |