Skip to content

Commit 3425836

Browse files
committed
Update integration test user context
1 parent 5a6a337 commit 3425836

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/cli/cli_commands.gd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,9 @@ func _add_integration_test_context(p_command: String) -> void:
135135
SentrySDK.add_breadcrumb(SentryBreadcrumb.create("Integration test started"))
136136

137137
var user := SentryUser.new()
138-
user.id = "test-user-123"
139-
user.username = "ps-tester"
138+
user.id = "12345"
139+
user.username = "TestUser"
140+
user.email = "[email protected]"
140141
SentrySDK.set_user(user)
141142

142143
SentrySDK.set_tag("test.suite", "integration")

0 commit comments

Comments
 (0)