Skip to content

Commit b40eb80

Browse files
committed
Reformat
1 parent e7ce22f commit b40eb80

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

posthog/test/test_feature_flags.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2371,13 +2371,11 @@ def test_capture_is_called_but_does_not_add_all_flags(self, patch_decide):
23712371
},
23722372
],
23732373
},
2374-
}
2374+
},
23752375
]
23762376

23772377
self.assertTrue(
2378-
client.get_feature_flag(
2379-
"complex-flag", "some-distinct-id", person_properties={"region": "USA"}
2380-
)
2378+
client.get_feature_flag("complex-flag", "some-distinct-id", person_properties={"region": "USA"})
23812379
)
23822380

23832381
# Grab the capture message that was just added to the queue
@@ -2390,7 +2388,6 @@ def test_capture_is_called_but_does_not_add_all_flags(self, patch_decide):
23902388
assert "$feature/simple-flag" not in msg["properties"]
23912389
assert "$active_feature_flags" not in msg["properties"]
23922390

2393-
23942391
@mock.patch.object(Client, "capture")
23952392
@mock.patch("posthog.client.decide")
23962393
def test_capture_is_called_in_get_feature_flag_payload(self, patch_decide, patch_capture):

0 commit comments

Comments
 (0)