Skip to content

Commit

Permalink
Fix typing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Oct 17, 2023
1 parent 4e67f22 commit 875441a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion posthog/hogql_queries/insights/test/test_events_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def _create_events(self, data: list[Tuple[str, str, Any]], event="$pageview"):
_create_person(
team_id=self.team.pk,
distinct_ids=[distinct_id],
properties={"name": distinct_id, **({"email": "[email protected]"} if id == "p1" else {})},
properties={
"name": distinct_id,
},
)
)
_create_event(
Expand Down

0 comments on commit 875441a

Please sign in to comment.