Skip to content

Commit

Permalink
Fix other test
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Dec 21, 2023
1 parent 2663bea commit be8a228
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions posthog/api/test/test_insight.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def test_created_updated_and_last_modified(self) -> None:
"uuid": str(self.user.uuid),
"distinct_id": self.user.distinct_id,
"first_name": self.user.first_name,
"last_name": self.user.last_name,
"email": self.user.email,
"is_email_verified": None,
}
Expand All @@ -84,6 +85,7 @@ def test_created_updated_and_last_modified(self) -> None:
"uuid": str(alt_user.uuid),
"distinct_id": alt_user.distinct_id,
"first_name": alt_user.first_name,
"last_name": alt_user.last_name,
"email": alt_user.email,
"is_email_verified": None,
}
Expand Down

0 comments on commit be8a228

Please sign in to comment.