-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d151196
commit eccb279
Showing
12 changed files
with
79 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -397,7 +397,7 @@ def test_query_select_person_with_joins_without_poe(self): | |
self.assertEqual(response.results[0][3], "[email protected]") | ||
|
||
@pytest.mark.usefixtures("unittest_snapshot") | ||
@override_settings(PERSON_ON_EVENTS_OVERRIDE=True) | ||
@override_settings(PERSON_ON_EVENTS_OVERRIDE=True, PERSON_ON_EVENTS_V2_OVERRIDE=False) | ||
def test_query_select_person_with_poe_without_joins(self): | ||
with freeze_time("2020-01-10"): | ||
self._create_random_events() | ||
|
@@ -473,7 +473,7 @@ def test_prop_cohort_basic(self): | |
) | ||
self.assertEqual(response.results, [("$pageview", 2)]) | ||
|
||
with override_settings(PERSON_ON_EVENTS_OVERRIDE=True): | ||
with override_settings(PERSON_ON_EVENTS_OVERRIDE=True, PERSON_ON_EVENTS_V2_OVERRIDE=False): | ||
response = execute_hogql_query( | ||
"SELECT event, count(*) FROM events WHERE {cohort_filter} GROUP BY event", | ||
team=self.team, | ||
|
Oops, something went wrong.