Skip to content

Commit

Permalink
Fix test_views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
odelaere committed Jan 20, 2022
1 parent 8e62a1d commit 24718d5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/collective/eeafaceted/dashboard/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,28 @@ def test_with_dashboard_collections(self):
container=self.folder,
tal_condition=u'',
roles_bypassing_talcondition=[],
sort_reversed=False,
query=[]
)
dashboardcol2 = api.content.create(
id='dc2',
type='DashboardCollection',
title='Dashboard collection 2',
container=self.folder,
tal_condition=u'',
roles_bypassing_talcondition=[]
roles_bypassing_talcondition=[],
sort_reversed=False,
query=[]
)
dashboardcol3 = api.content.create(
id='dc3',
type='DashboardCollection',
title='Dashboard collection 3',
container=self.folder,
tal_condition=u'',
roles_bypassing_talcondition=[]
roles_bypassing_talcondition=[],
sort_reversed=False,
query=[]
)
dashboardcoll.showNumberOfItems = True
dashboardcol2.showNumberOfItems = False
Expand Down

0 comments on commit 24718d5

Please sign in to comment.