Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update snapshots #17637

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ee/api/test/test_team.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from posthog.models.organization import Organization, OrganizationMembership
from posthog.models.team import Team
from posthog.models.user import User
from posthog.test.base import FuzzyInt


class TestProjectEnterpriseAPI(APILicensedTest):
Expand Down Expand Up @@ -438,7 +439,7 @@ def test_list_teams_restricted_ones_hidden(self):
projects_response = self.client.get(f"/api/projects/")

# 9 (above):
with self.assertNumQueries(8):
with self.assertNumQueries(FuzzyInt(8, 9)):
current_org_response = self.client.get(f"/api/organizations/{self.organization.id}/")

self.assertEqual(projects_response.status_code, HTTP_200_OK)
Expand Down
Loading
Loading