From 2ba4c9b5bc568c9f867f5022940f7cc0da216bbc Mon Sep 17 00:00:00 2001 From: Michael Matloka Date: Fri, 29 Nov 2024 00:17:41 +0100 Subject: [PATCH] Update `test_my_flags_is_not_nplus1` --- posthog/api/test/test_feature_flag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/api/test/test_feature_flag.py b/posthog/api/test/test_feature_flag.py index 86cee8950dfdfe..4fd4183c1ac388 100644 --- a/posthog/api/test/test_feature_flag.py +++ b/posthog/api/test/test_feature_flag.py @@ -1259,7 +1259,7 @@ def test_my_flags_is_not_nplus1(self) -> None: format="json", ).json() - with self.assertNumQueries(FuzzyInt(7, 8)): + with self.assertNumQueries(FuzzyInt(8, 9)): response = self.client.get(f"/api/projects/{self.team.id}/feature_flags/my_flags") self.assertEqual(response.status_code, status.HTTP_200_OK)