Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Jan 2, 2025
1 parent 1fd13a0 commit b54f98e
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,22 @@ def generate_fizzbuzz_events(self) -> None:
self.base_time + timedelta(minutes=tick)
).timetuple()
),
"tags": {
# Sentry
"environment": self.environments[
(tock * p) % len(self.environments)
],
"sentry:release": str(tick),
"sentry:dist": "dist1",
"os.name": "windows",
"os.rooted": 1,
# User
"foo": "baz",
"foo.bar": "qux",
"os_name": "linux",
},
"tags": list(
{
# Sentry
"environment": self.environments[
(tock * p) % len(self.environments)
],
"sentry:release": str(tick),
"sentry:dist": "dist1",
"os.name": "windows",
"os.rooted": 1,
# User
"foo": "baz",
"foo.bar": "qux",
"os_name": "linux",
}.items()
),
"exception": {
"values": [
{
Expand Down

0 comments on commit b54f98e

Please sign in to comment.