Skip to content

Commit

Permalink
adjusted test to include filter option
Browse files Browse the repository at this point in the history
  • Loading branch information
tholzheim committed Dec 6, 2022
1 parent bf08dfd commit b2f36d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_issue620.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ def test_issue_620(self):
ag_grid.load_lod(lod)
if self.debug:
print(ag_grid.options.columnDefs)
expected=[{'field': 'family_name'}, {'field': 'given_name'}]
expected=[{'field': 'family_name', 'filter': True}, {'field': 'given_name', 'filter': True}]
self.assertEqual(expected, ag_grid.options.columnDefs)

0 comments on commit b2f36d9

Please sign in to comment.