Skip to content

Commit

Permalink
add some extra messages for good measure
Browse files Browse the repository at this point in the history
  • Loading branch information
shruthilayaj committed Dec 4, 2024
1 parent 3ee0033 commit 72bc9a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/subscriptions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,10 @@ def setup_teardown(self, clickhouse_db: None) -> None:
gen_span_message(self.base_time + timedelta(minutes=tick))
for tick in range(self.minutes)
]
write_raw_unprocessed_events(spans_storage, messages)
extra_messages = [
gen_span_message(self.base_time - timedelta(hours=4)) for _ in range(2)
]
write_raw_unprocessed_events(spans_storage, extra_messages + messages)


def __entity_eq__(self: Entity, other: object) -> bool:
Expand Down

0 comments on commit 72bc9a6

Please sign in to comment.