Skip to content

Commit e7ef27d

Browse files
committed
Specify project_id in test coverage
1 parent a765e42 commit e7ef27d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sentry/replays/unit/test_ingest_dom_index.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_get_user_actions():
4545
}
4646
]
4747

48-
user_actions = get_user_actions(uuid.uuid4().hex, events)
48+
user_actions = get_user_actions(1, uuid.uuid4().hex, events)
4949
assert len(user_actions) == 1
5050
assert user_actions[0]["node_id"] == 1
5151
assert user_actions[0]["tag"] == "div"
@@ -79,7 +79,7 @@ def test_get_user_actions_missing_node():
7979
}
8080
]
8181

82-
user_actions = get_user_actions(uuid.uuid4().hex, events)
82+
user_actions = get_user_actions(1, uuid.uuid4().hex, events)
8383
assert len(user_actions) == 0
8484

8585

0 commit comments

Comments
 (0)