Skip to content

Commit

Permalink
Specify project_id in test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
cmanallen committed May 12, 2023
1 parent a765e42 commit e7ef27d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sentry/replays/unit/test_ingest_dom_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_get_user_actions():
}
]

user_actions = get_user_actions(uuid.uuid4().hex, events)
user_actions = get_user_actions(1, uuid.uuid4().hex, events)
assert len(user_actions) == 1
assert user_actions[0]["node_id"] == 1
assert user_actions[0]["tag"] == "div"
Expand Down Expand Up @@ -79,7 +79,7 @@ def test_get_user_actions_missing_node():
}
]

user_actions = get_user_actions(uuid.uuid4().hex, events)
user_actions = get_user_actions(1, uuid.uuid4().hex, events)
assert len(user_actions) == 0


Expand Down

0 comments on commit e7ef27d

Please sign in to comment.