We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37577ba commit e92cac1Copy full SHA for e92cac1
tests/test_build.py
@@ -322,8 +322,13 @@ def test_simple_build_item_length_unlimited(self):
322
self.assertEqual(feed_parsed.bozo, 0)
323
324
for feed_item in feed_parsed.entries:
325
- if feed_item.title not in ("Page without meta with short text",):
326
- self.assertGreaterEqual(len(feed_item.description), 150)
+ if feed_item.title not in (
+ "Page without meta with short text",
327
+ "Blog sample",
328
+ ):
329
+ self.assertGreaterEqual(
330
+ len(feed_item.description), 150, feed_item.title
331
+ )
332
333
def test_simple_build_pretty_print_enabled(self):
334
with tempfile.TemporaryDirectory() as tmpdirname:
0 commit comments