Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Murphy committed Nov 18, 2023
1 parent 8f9076c commit 78eb955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/api/test/test_decide.py
Original file line number Diff line number Diff line change
Expand Up @@ -2998,7 +2998,7 @@ def test_decide_element_chain_as_string(self, *args):
response = self._post_decide(api_version=3)
self.assertEqual(response.status_code, 200)
self.assertTrue("elementsChainAsString" in response.json())
self.assertEqual(response["elementsChainAsString"], True)
self.assertTrue(response.json()["elementsChainAsString"])

with self.settings(ELEMENT_CHAIN_AS_STRING_TEAMS={"0"}):
response = self._post_decide(api_version=3)
Expand Down

0 comments on commit 78eb955

Please sign in to comment.