Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Nov 12, 2024
1 parent fc5098c commit e4bca53
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion py/tests/test_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@ def test_normalize_user_agent(must_normalize):

if must_normalize:
assert event["contexts"] == {
"browser": {"name": "Firefox", "version": "15.0.1", "type": "browser"},
"browser": {
"browser": "Firefox 15.0.1",
"name": "Firefox",
"version": "15.0.1",
"type": "browser",
},
"client_os": {"name": "Ubuntu", "type": "os"},
}
else:
Expand Down

0 comments on commit e4bca53

Please sign in to comment.