diff --git a/posthog/clickhouse/test/test_sessions_model.py b/posthog/clickhouse/test/test_sessions_model.py index 1a3b4aa2c23ba9..0042456a03d953 100644 --- a/posthog/clickhouse/test/test_sessions_model.py +++ b/posthog/clickhouse/test/test_sessions_model.py @@ -23,8 +23,8 @@ def create_session_id(): return f"s{session_id_counter}" -# only certain team ids can insert events into this legacy sessions table -TEAM_ID = 1 +# only certain team ids can insert events into this legacy sessions table, see sessions/sql.py for more info +TEAM_ID = 2 TEAM = Team(id=TEAM_ID) diff --git a/posthog/hogql/database/schema/test/test_sessions_v1.py b/posthog/hogql/database/schema/test/test_sessions_v1.py index d08663bd0cdee5..f649e6bd96a8af 100644 --- a/posthog/hogql/database/schema/test/test_sessions_v1.py +++ b/posthog/hogql/database/schema/test/test_sessions_v1.py @@ -19,7 +19,7 @@ ClickhouseDestroyTablesMixin, ) -# only some teams can use this table +# only certain team ids can insert events into this legacy sessions table, see sessions/sql.py for more info ALLOWED_TEAM_ID = 2