Fix tests

This commit is contained in:
John Doty 2024-12-15 07:57:18 -08:00
parent 51208f43b3
commit d7c66a7598

View file

@ -99,6 +99,7 @@ FEED = feed.Feed(
inserted_at=(REF_TIME * 1000) + index, inserted_at=(REF_TIME * 1000) + index,
title=f"Entry {index}", title=f"Entry {index}",
link=f"http://example.com/test/a{index}", link=f"http://example.com/test/a{index}",
posted_at=(REF_TIME * 1000) + index,
) )
for index in range(100, 0, -1) for index in range(100, 0, -1)
], ],
@ -121,6 +122,7 @@ OTHER_FEED = feed.Feed(
inserted_at=(REF_TIME * 1000) + index, inserted_at=(REF_TIME * 1000) + index,
title=f"Entry {index}", title=f"Entry {index}",
link=f"http://example.com/other/a{index}", link=f"http://example.com/other/a{index}",
posted_at=(REF_TIME * 1000) + index,
) )
for index in range(100, 0, -1) for index in range(100, 0, -1)
], ],