Skip to content

Commit

Permalink
fix the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Dec 21, 2023
1 parent b74ccc8 commit 7c53cd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/clickhouse/queries/test/test_breakdown_props.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ def test_breakdown_person_props_with_entity_filter_and_or_props_with_partial_pus
"funnel_window_days": 14,
}
)
res = sorted(get_breakdown_prop_values(filter, Entity(entity_params[0]), "count(*)", self.team))
self.assertEqual(res[0], ["test", "test2"])
res = sorted(get_breakdown_prop_values(filter, Entity(entity_params[0]), "count(*)", self.team)[0])
self.assertEqual(res, ["test", "test2"])

@snapshot_clickhouse_queries
def test_breakdown_group_props(self):
Expand Down

0 comments on commit 7c53cd7

Please sign in to comment.