Skip to content

Commit

Permalink
Fix ids in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Jun 20, 2024
1 parent 60af3be commit f98e6e8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

@freeze_time("2021-01-01T13:46:23")
class TestFilterSessionReplaysBySessions(ClickhouseTestMixin, APIBaseTest):
session_with_one_hour = str(uuid7())
session_with_different_session_and_replay_duration = str(uuid7())
session_with_no_events = str(uuid7())
session_with_one_hour = str(uuid7("2021-01-01T10"))
session_with_different_session_and_replay_duration = str(uuid7("2021-01-01T11"))
session_with_no_events = str(uuid7("2021-01-01T12"))

def setUp(self):
super().setUp()
Expand Down Expand Up @@ -105,9 +105,9 @@ def test_select_by_duration_without_session_filter(self):
)

assert response.results == [
(self.session_with_one_hour,),
(self.session_with_different_session_and_replay_duration,),
(self.session_with_no_events,),
(self.session_with_one_hour,),
]

@snapshot_clickhouse_queries
Expand Down

0 comments on commit f98e6e8

Please sign in to comment.