Skip to content

Commit

Permalink
remove uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE committed Aug 30, 2024
1 parent f035962 commit fb942c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/warehouse/api/test/test_saved_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def test_ancestors(self):

self.assertEqual(response.status_code, 200, response.content)
child_ancestors = response.json()["ancestors"]
self.assertEqual(child_ancestors, [uuid.UUID(saved_query_parent_id)])
self.assertEqual(child_ancestors, [saved_query_parent_id])

response = self.client.post(
f"/api/projects/{self.team.id}/warehouse_saved_queries/{saved_query_child_id}/ancestors", {"level": 2}
Expand Down

0 comments on commit fb942c4

Please sign in to comment.