Skip to content

Commit

Permalink
Try to reduce the number of items in dynamic_objects
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Apr 24, 2024
1 parent de32136 commit 596d4e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/tests/ui/layout/test_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_feed_dynamic_objects(page):
feed = Feed(height=250, load_buffer=10)
serve_component(page, feed)

feed.objects = list(range(1000))
feed.objects = list(range(100))
wait_until(lambda: page.locator('pre') is not None, page)
wait_until(lambda: page.locator('pre').first is not None, page)

Expand Down

0 comments on commit 596d4e0

Please sign in to comment.