Skip to content

Commit 01b5864

Browse files
committed
Complete the test
Looks like the test was missing an assert.
1 parent 3c7a46e commit 01b5864

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

posthog/test/test_feature_flags.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,13 +1007,15 @@ def test_feature_flags_local_evaluation_None_values(self, patch_get, patch_decid
10071007
"beta-feature",
10081008
"some-distinct-id",
10091009
person_properties={
1010-
"latestBuildVersion": "24.32..1",
1010+
"latestBuildVersion": "24.32.1",
10111011
"latestBuildVersionMajor": "24",
10121012
"latestBuildVersionMinor": "32",
10131013
"latestBuildVersionPatch": "1",
10141014
},
10151015
)
10161016

1017+
self.assertEqual(feature_flag_match, True)
1018+
10171019
@mock.patch("posthog.client.decide")
10181020
@mock.patch("posthog.client.get")
10191021
def test_feature_flags_local_evaluation_for_cohorts(self, patch_get, patch_decide):

0 commit comments

Comments
 (0)